summaryrefslogtreecommitdiffstats
path: root/eval/src/tests/tensor/tensor_conformance/tensor_conformance_test.cpp
blob: 0f473f99128645fddfe55ad4f2af51ef632b45c5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include <vespa/vespalib/testkit/test_kit.h>
#include <vespa/eval/eval/test/tensor_conformance.h>
#include <vespa/eval/eval/simple_value.h>
#include <vespa/eval/streamed/streamed_value_builder_factory.h>
#include <vespa/eval/eval/fast_value.h>
#include <vespa/vespalib/util/stringfmt.h>
#include <vespa/vespalib/io/mapped_file_input.h>
#include <vespa/vespalib/data/slime/slime.h>

using vespalib::eval::SimpleValueBuilderFactory;
using vespalib::eval::StreamedValueBuilderFactory;
using vespalib::eval::FastValueBuilderFactory;
using vespalib::eval::test::TensorConformance;
using vespalib::make_string_short::fmt;
using vespalib::Slime;
using vespalib::slime::JsonFormat;
using vespalib::MappedFileInput;

vespalib::string module_src_path(TEST_PATH("../../../../"));
vespalib::string module_build_path("../../../../");

TEST("require that SimpleValue implementation passes all conformance tests") {
    TEST_DO(TensorConformance::run_tests(module_src_path, SimpleValueBuilderFactory::get()));
}

TEST("require that StreamedValue implementation passes all conformance tests") {
    TEST_DO(TensorConformance::run_tests(module_src_path, StreamedValueBuilderFactory::get()));
}

TEST("require that FastValue implementation passes all conformance tests") {
    TEST_DO(TensorConformance::run_tests(module_src_path, FastValueBuilderFactory::get()));
}

TEST("require that cross-language tensor conformance tests pass with C++ expression evaluation") {
    vespalib::string result_file = "conformance_result.json";
    vespalib::string binary = module_build_path + "src/apps/tensor_conformance/vespa-tensor-conformance";
    EXPECT_EQUAL(system(fmt("%s generate-some | %s evaluate | %s verify > %s", binary.c_str(), binary.c_str(), binary.c_str(), result_file.c_str()).c_str()), 0);
    Slime result;
    MappedFileInput input(result_file);
    JsonFormat::decode(input, result);
    fprintf(stderr, "conformance summary: %s\n", result.toString().c_str());
    int num_tests = result.get()["num_tests"].asLong();
    int prod_tests = result.get()["stats"]["cpp_prod"].asLong();
    int simple_tests = result.get()["stats"]["cpp_simple_value"].asLong();
    int streamed_tests = result.get()["stats"]["cpp_streamed_value"].asLong();
    int with_expect = result.get()["stats"]["expect"].asLong();
    EXPECT_GREATER(num_tests, 1000);
    EXPECT_EQUAL(prod_tests, num_tests);
    EXPECT_EQUAL(simple_tests, num_tests);
    EXPECT_EQUAL(streamed_tests, num_tests);
    EXPECT_EQUAL(with_expect, num_tests);
}

TEST_MAIN() { TEST_RUN_ALL(); }