-
Notifications
You must be signed in to change notification settings - Fork 10.5k
/
Copy pathBuildConfigTests.cpp
54 lines (47 loc) · 2.1 KB
/
BuildConfigTests.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
#include "gtest/gtest.h"
#include "llvm/ADT/Optional.h"
#include "swift/Basic/SourceLoc.h"
#include "swift/Basic/Version.h"
using namespace swift;
using namespace llvm;
class CompilerVersionTest : public ::testing::Test {};
class VersionTest : public ::testing::Test{};
Optional<version::Version> CV(const char *VersionString) {
return version::Version::parseCompilerVersionString(VersionString,
SourceLoc(),
nullptr);
}
Optional<version::Version> V(const char *VersionString) {
return version::Version::parseVersionString(VersionString,
SourceLoc(),
nullptr);
}
TEST_F(CompilerVersionTest, VersionComparison) {
auto currentVersion = version::Version::getCurrentCompilerVersion();
EXPECT_GE(CV("700").getValue(), CV("602").getValue());
EXPECT_GE(CV("700.*").getValue(), CV("700.*").getValue());
EXPECT_GE(CV("700.*.1").getValue(), CV("700.*.0").getValue());
EXPECT_GE(CV("700.*.23").getValue(), CV("700.*.21").getValue());
EXPECT_GE(CV("700.*.1.1.0").getValue(), CV("700.*.1.1").getValue());
EXPECT_GE(currentVersion, currentVersion);
EXPECT_GE(currentVersion, CV("9223371.*.999.999.999").getValue());
}
TEST_F(VersionTest, VersionComparison) {
auto currentVersion = version::Version::getCurrentLanguageVersion();
EXPECT_GE(V("3").getValue(), V("2").getValue());
EXPECT_GE(V("2.0").getValue(), V("2.0").getValue());
EXPECT_GE(V("2.1").getValue(), V("2.0").getValue());
EXPECT_GE(V("3.1").getValue(), V("3.0.1").getValue());
EXPECT_GE(V("2.0").getValue(), V("2").getValue());
EXPECT_GE(currentVersion, currentVersion);
EXPECT_GE(currentVersion, V("1.0").getValue());
EXPECT_GE(currentVersion, V("2").getValue());
EXPECT_FALSE(V("2.n").hasValue());
EXPECT_FALSE(V("").hasValue());
EXPECT_FALSE(V("\"2.0\"").hasValue());
EXPECT_FALSE(V("2..").hasValue());
EXPECT_FALSE(V(".").hasValue());
EXPECT_FALSE(V("..").hasValue());
EXPECT_TRUE(V("1.").hasValue());
EXPECT_FALSE(V(".1").hasValue());
}