forked from easz/cpp-semver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_cmp.cpp
97 lines (80 loc) · 3.12 KB
/
test_cmp.cpp
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#include "test.hpp"
#include "cpp-semver.hpp"
#include <tuple>
#include <string>
#include <vector>
#include <iostream>
const std::vector< std::tuple< std::string, std::string > > test_data_gt
{
{ "1.0.0", "0.0.0" },
{ "1.0.0", "1.0.0-rc" },
{ "2.3.5", "2.3.4" }
};
const std::vector< std::tuple< std::string, std::string > > test_data_gtr
{
{ "1.0.0", "<1.0.0" },
{ "6.6.6", ">1.0.0 <2.0.0 || 3 - 5" }
};
const std::vector< std::tuple< std::string, std::string > > test_data_ltr
{
{ "0.1.0", ">1.0.0" },
{ "0.6.6", ">1.0.0 <2.0.0 || 3 - 5" }
};
void run_test()
{
for (const auto& tpl : test_data_gt)
{
const auto& v1 = std::get<0>(tpl);
const auto& v2 = std::get<1>(tpl);
std::cout << "[Test] gt( \"" << v1 << "\", \"" << v2 << "\" )" << std::endl;
TEST_ASSERT(semver::gt(v1, v2));
std::cout << "[Test] gte( \"" << v1 << "\", \"" << v2 << "\" )" << std::endl;
TEST_ASSERT(semver::gte(v1, v2));
std::cout << "[Test] lt( \"" << v2 << "\", \"" << v1 << "\" )" << std::endl;
TEST_ASSERT(semver::lt(v2, v1));
std::cout << "[Test] lte( \"" << v2 << "\", \"" << v1 << "\" )" << std::endl;
TEST_ASSERT(semver::lte(v2, v1));
std::cout << "[Test] !eq( \"" << v1 << "\", \"" << v2 << "\" )" << std::endl;
TEST_ASSERT(!semver::eq(v1, v2));
std::cout << "[Test] !eq( \"" << v2 << "\", \"" << v1 << "\" )" << std::endl;
TEST_ASSERT(!semver::eq(v2, v1));
std::cout << "[Test] neq( \"" << v1 << "\", \"" << v2 << "\" )" << std::endl;
TEST_ASSERT(semver::neq(v1, v2));
std::cout << "[Test] neq( \"" << v2 << "\", \"" << v1 << "\" )" << std::endl;
TEST_ASSERT(semver::neq(v2, v1));
std::cout << "[Test] !lt( \"" << v1 << "\", \"" << v2 << "\" )" << std::endl;
TEST_ASSERT(!semver::lt(v1, v2));
std::cout << "[Test] !lte( \"" << v1 << "\", \"" << v2 << "\" )" << std::endl;
TEST_ASSERT(!semver::lte(v1, v2));
}
{
const std::string v1 = "1.2.3-rc";
const std::string v2 = v1;
std::cout << "[Test] !gt( \"" << v1 << "\", \"" << v2 << "\" )" << std::endl;
TEST_ASSERT(!semver::gt(v1, v2));
std::cout << "[Test] gte( \"" << v1 << "\", \"" << v2 << "\" )" << std::endl;
TEST_ASSERT(semver::gte(v1, v2));
std::cout << "[Test] !lt( \"" << v2 << "\", \"" << v1 << "\" )" << std::endl;
TEST_ASSERT(!semver::lt(v2, v1));
std::cout << "[Test] lte( \"" << v2 << "\", \"" << v1 << "\" )" << std::endl;
TEST_ASSERT(semver::lte(v2, v1));
std::cout << "[Test] eq( \"" << v1 << "\", \"" << v2 << "\" )" << std::endl;
TEST_ASSERT(semver::eq(v1, v2));
std::cout << "[Test] !neq( \"" << v1 << "\", \"" << v2 << "\" )" << std::endl;
TEST_ASSERT(!semver::neq(v1, v2));
}
for (const auto& tpl : test_data_gtr)
{
const auto& v = std::get<0>(tpl);
const auto& r = std::get<1>(tpl);
std::cout << "[Test] gtr( \"" << v << "\", \"" << r << "\" )" << std::endl;
TEST_ASSERT(semver::gtr(v, r));
}
for (const auto& tpl : test_data_ltr)
{
const auto& v = std::get<0>(tpl);
const auto& r = std::get<1>(tpl);
std::cout << "[Test] ltr( \"" << v << "\", \"" << r << "\" )" << std::endl;
TEST_ASSERT(semver::ltr(v, r));
}
}