-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmain.cpp
86 lines (66 loc) · 1.76 KB
/
main.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
#define BOOST_TEST_MODULE CPACSGenTests
#include <boost/test/unit_test.hpp>
#include "../src/lib/SchemaParser.h"
#include "../src/lib/TypeSystem.h"
#include "../src/lib/CodeGen.h"
#include "../src/lib/Tables.h"
#include "../src/lib/Filesystem.h"
#include "utils.h"
void runTest() {
const auto testDir = ::testDir();
const auto schemaFile = testDir / "schema.xsd";
const auto refFile = testDir / "ref.cpp";
const auto resultFile = testDir / "result.cpp";
tigl::Filesystem fs;
const tigl::Tables tables(testDir.string());
auto types = tigl::xsd::parseSchema(schemaFile.string());
const auto& typeSystem = tigl::buildTypeSystem(types, tables);
genCode(testDir.string(), typeSystem, "", tables, fs);
fs.mergeFilesInto(resultFile);
fs.flushToDisk();
const auto ref = readTextFile(refFile);
const auto result = readTextFile(resultFile);
if (ref != result)
BOOST_TEST_ERROR("ref and result mismatch. please diff files in filesystem");
else
boost::filesystem::remove(resultFile);
}
BOOST_AUTO_TEST_CASE(sequence) {
runTest();
}
BOOST_AUTO_TEST_CASE(all) {
runTest();
}
BOOST_AUTO_TEST_CASE(choice) {
runTest();
}
BOOST_AUTO_TEST_CASE(documentation) {
runTest();
}
BOOST_AUTO_TEST_CASE(uidinbasetype) {
runTest();
}
BOOST_AUTO_TEST_CASE(custombasetype) {
runTest();
}
BOOST_AUTO_TEST_CASE(basetypewithparent) {
runTest();
}
BOOST_AUTO_TEST_CASE(uidreferencevector) {
runTest();
}
BOOST_AUTO_TEST_CASE(cdata) {
runTest();
}
BOOST_AUTO_TEST_CASE(simplebasetypewithparent) {
runTest();
}
BOOST_AUTO_TEST_CASE(complextypewithsimplecontent) {
runTest();
}
BOOST_AUTO_TEST_CASE(collapsedifferentenums) {
runTest();
}
BOOST_AUTO_TEST_CASE(optionalchoice) {
runTest();
}