blob: 539962a3c654a6da45019a512f574a9ff71fe85c [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
#include <iostream>
#include <fstream>
#include <sstream>
#include <array>
#include <catch.hpp>
#include <array_of_doubles_sketch.hpp>
namespace datasketches {
#ifdef TEST_BINARY_INPUT_PATH
const std::string inputPath = TEST_BINARY_INPUT_PATH;
#else
const std::string inputPath = "test/";
#endif
TEST_CASE("aod sketch: serialization compatibility with java - empty", "[tuple_sketch]") {
auto update_sketch = update_array_of_doubles_sketch<>::builder().build();
REQUIRE(update_sketch.is_empty());
REQUIRE(update_sketch.get_num_retained() == 0);
auto compact_sketch = update_sketch.compact();
// read binary sketch from Java
std::ifstream is;
is.exceptions(std::ios::failbit | std::ios::badbit);
is.open(inputPath + "aod_1_compact_empty_from_java.sk", std::ios::binary);
auto compact_sketch_from_java = compact_array_of_doubles_sketch<>::deserialize(is);
REQUIRE(compact_sketch.get_num_retained() == compact_sketch_from_java.get_num_retained());
REQUIRE(compact_sketch.get_theta() == Approx(compact_sketch_from_java.get_theta()).margin(1e-10));
REQUIRE(compact_sketch.get_estimate() == Approx(compact_sketch_from_java.get_estimate()).margin(1e-10));
REQUIRE(compact_sketch.get_lower_bound(1) == Approx(compact_sketch_from_java.get_lower_bound(1)).margin(1e-10));
REQUIRE(compact_sketch.get_upper_bound(1) == Approx(compact_sketch_from_java.get_upper_bound(1)).margin(1e-10));
}
TEST_CASE("aod sketch: serialization compatibility with java - empty configured for three values", "[tuple_sketch]") {
auto update_sketch = update_array_of_doubles_sketch<>::builder(3).build();
REQUIRE(update_sketch.is_empty());
REQUIRE(update_sketch.get_num_retained() == 0);
REQUIRE(update_sketch.get_num_values() == 3);
auto compact_sketch = update_sketch.compact();
// read binary sketch from Java
std::ifstream is;
is.exceptions(std::ios::failbit | std::ios::badbit);
is.open(inputPath + "aod_3_compact_empty_from_java.sk", std::ios::binary);
auto compact_sketch_from_java = compact_array_of_doubles_sketch<>::deserialize(is);
REQUIRE(compact_sketch.get_num_values() == compact_sketch_from_java.get_num_values());
REQUIRE(compact_sketch.get_num_retained() == compact_sketch_from_java.get_num_retained());
REQUIRE(compact_sketch.get_theta() == Approx(compact_sketch_from_java.get_theta()).margin(1e-10));
REQUIRE(compact_sketch.get_estimate() == Approx(compact_sketch_from_java.get_estimate()).margin(1e-10));
REQUIRE(compact_sketch.get_lower_bound(1) == Approx(compact_sketch_from_java.get_lower_bound(1)).margin(1e-10));
REQUIRE(compact_sketch.get_upper_bound(1) == Approx(compact_sketch_from_java.get_upper_bound(1)).margin(1e-10));
}
TEST_CASE("aod sketch: serialization compatibility with java - non-empty no entries", "[tuple_sketch]") {
auto update_sketch = update_array_of_doubles_sketch<>::builder().set_p(0.01).build();
std::vector<double> a = {1};
update_sketch.update(1, a);
REQUIRE_FALSE(update_sketch.is_empty());
REQUIRE(update_sketch.get_num_retained() == 0);
auto compact_sketch = update_sketch.compact();
// read binary sketch from Java
std::ifstream is;
is.exceptions(std::ios::failbit | std::ios::badbit);
is.open(inputPath + "aod_1_compact_non_empty_no_entries_from_java.sk", std::ios::binary);
auto compact_sketch_from_java = compact_array_of_doubles_sketch<>::deserialize(is);
REQUIRE(compact_sketch.get_num_retained() == compact_sketch_from_java.get_num_retained());
REQUIRE(compact_sketch.get_theta() == Approx(compact_sketch_from_java.get_theta()).margin(1e-10));
REQUIRE(compact_sketch.get_estimate() == Approx(compact_sketch_from_java.get_estimate()).margin(1e-10));
REQUIRE(compact_sketch.get_lower_bound(1) == Approx(compact_sketch_from_java.get_lower_bound(1)).margin(1e-10));
REQUIRE(compact_sketch.get_upper_bound(1) == Approx(compact_sketch_from_java.get_upper_bound(1)).margin(1e-10));
}
TEST_CASE("aod sketch: serialization compatibility with java - estimation mode", "[tuple_sketch]") {
auto update_sketch = update_array_of_doubles_sketch<>::builder().build();
std::vector<double> a = {1};
for (int i = 0; i < 8192; ++i) update_sketch.update(i, a);
auto compact_sketch = update_sketch.compact();
// read binary sketch from Java
std::ifstream is;
is.exceptions(std::ios::failbit | std::ios::badbit);
is.open(inputPath + "aod_1_compact_estimation_from_java.sk", std::ios::binary);
auto compact_sketch_from_java = compact_array_of_doubles_sketch<>::deserialize(is);
REQUIRE(compact_sketch.get_num_retained() == compact_sketch_from_java.get_num_retained());
REQUIRE(compact_sketch.get_theta() == Approx(compact_sketch_from_java.get_theta()).margin(1e-10));
REQUIRE(compact_sketch.get_estimate() == Approx(compact_sketch_from_java.get_estimate()).margin(1e-10));
REQUIRE(compact_sketch.get_lower_bound(1) == Approx(compact_sketch_from_java.get_lower_bound(1)).margin(1e-10));
REQUIRE(compact_sketch.get_upper_bound(1) == Approx(compact_sketch_from_java.get_upper_bound(1)).margin(1e-10));
REQUIRE(compact_sketch.get_lower_bound(2) == Approx(compact_sketch_from_java.get_lower_bound(2)).margin(1e-10));
REQUIRE(compact_sketch.get_upper_bound(2) == Approx(compact_sketch_from_java.get_upper_bound(2)).margin(1e-10));
REQUIRE(compact_sketch.get_lower_bound(3) == Approx(compact_sketch_from_java.get_lower_bound(3)).margin(1e-10));
REQUIRE(compact_sketch.get_upper_bound(3) == Approx(compact_sketch_from_java.get_upper_bound(3)).margin(1e-10));
// sketch from Java is not ordered
// transform it to ordered so that iteration sequence would match exactly
compact_array_of_doubles_sketch<> ordered_sketch_from_java(compact_sketch_from_java, true);
auto it = ordered_sketch_from_java.begin();
for (const auto& entry: compact_sketch) {
REQUIRE(entry == *it);
++it;
}
}
TEST_CASE("aod sketch: serialization compatibility with java - exact mode with two values", "[tuple_sketch]") {
auto update_sketch = update_array_of_doubles_sketch<>::builder(2).build();
std::vector<double> a = {1, 2};
for (int i = 0; i < 1000; ++i) update_sketch.update(i, a);
auto compact_sketch = update_sketch.compact();
REQUIRE_FALSE(compact_sketch.is_estimation_mode());
// read binary sketch from Java
std::ifstream is;
is.exceptions(std::ios::failbit | std::ios::badbit);
is.open(inputPath + "aod_2_compact_exact_from_java.sk", std::ios::binary);
auto compact_sketch_from_java = compact_array_of_doubles_sketch<>::deserialize(is);
REQUIRE(compact_sketch.get_num_retained() == compact_sketch_from_java.get_num_retained());
REQUIRE(compact_sketch.get_theta() == Approx(compact_sketch_from_java.get_theta()).margin(1e-10));
REQUIRE(compact_sketch.get_estimate() == Approx(compact_sketch_from_java.get_estimate()).margin(1e-10));
REQUIRE(compact_sketch.get_lower_bound(1) == Approx(compact_sketch_from_java.get_lower_bound(1)).margin(1e-10));
REQUIRE(compact_sketch.get_upper_bound(1) == Approx(compact_sketch_from_java.get_upper_bound(1)).margin(1e-10));
REQUIRE(compact_sketch.get_lower_bound(2) == Approx(compact_sketch_from_java.get_lower_bound(2)).margin(1e-10));
REQUIRE(compact_sketch.get_upper_bound(2) == Approx(compact_sketch_from_java.get_upper_bound(2)).margin(1e-10));
REQUIRE(compact_sketch.get_lower_bound(3) == Approx(compact_sketch_from_java.get_lower_bound(3)).margin(1e-10));
REQUIRE(compact_sketch.get_upper_bound(3) == Approx(compact_sketch_from_java.get_upper_bound(3)).margin(1e-10));
// sketch from Java is not ordered
// transform it to ordered so that iteration sequence would match exactly
compact_array_of_doubles_sketch<> ordered_sketch_from_java(compact_sketch_from_java, true);
auto it = ordered_sketch_from_java.begin();
for (const auto& entry: compact_sketch) {
REQUIRE(entry.first == (*it).first);
REQUIRE(entry.second.size() == 2);
REQUIRE(entry.second[0] == (*it).second[0]);
REQUIRE(entry.second[1] == (*it).second[1]);
++it;
}
}
TEST_CASE("aod sketch: serialize deserialize - estimation mode", "[tuple_sketch]") {
auto update_sketch = update_array_of_doubles_sketch<>::builder(2).build();
std::vector<double> a = {1, 2};
for (int i = 0; i < 8192; ++i) update_sketch.update(i, a);
auto compact_sketch = update_sketch.compact();
std::stringstream ss;
ss.exceptions(std::ios::failbit | std::ios::badbit);
compact_sketch.serialize(ss);
auto deserialized_sketch = compact_array_of_doubles_sketch<>::deserialize(ss);
REQUIRE(compact_sketch.get_num_retained() == deserialized_sketch.get_num_retained());
REQUIRE(compact_sketch.get_theta() == Approx(deserialized_sketch.get_theta()).margin(1e-10));
REQUIRE(compact_sketch.get_estimate() == Approx(deserialized_sketch.get_estimate()).margin(1e-10));
REQUIRE(compact_sketch.get_lower_bound(1) == Approx(deserialized_sketch.get_lower_bound(1)).margin(1e-10));
REQUIRE(compact_sketch.get_upper_bound(1) == Approx(deserialized_sketch.get_upper_bound(1)).margin(1e-10));
REQUIRE(compact_sketch.get_lower_bound(2) == Approx(deserialized_sketch.get_lower_bound(2)).margin(1e-10));
REQUIRE(compact_sketch.get_upper_bound(2) == Approx(deserialized_sketch.get_upper_bound(2)).margin(1e-10));
REQUIRE(compact_sketch.get_lower_bound(3) == Approx(deserialized_sketch.get_lower_bound(3)).margin(1e-10));
REQUIRE(compact_sketch.get_upper_bound(3) == Approx(deserialized_sketch.get_upper_bound(3)).margin(1e-10));
// sketches must be ordered and the iteration sequence must match exactly
auto it = deserialized_sketch.begin();
for (const auto& entry: compact_sketch) {
REQUIRE(entry.first == (*it).first);
REQUIRE(entry.second.size() == 2);
REQUIRE(entry.second[0] == (*it).second[0]);
REQUIRE(entry.second[1] == (*it).second[1]);
++it;
}
}
} /* namespace datasketches */