-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschemaTest.cc
63 lines (57 loc) · 1.41 KB
/
schemaTest.cc
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
#include <cassert>
#include <string>
#include <list>
#include <iostream>
#include "Schema.hh"
#include "YangAst.hh"
void
extension()
{
std::list<std::string> files(1, "test_models/extension.yang");
Schema schema(files);
const Yang::Ast::InteriorNode* i = schema.findInteriorNode("foo");
assert(i != 0);
const Yang::Ast::Unknown* u = i->findUnknown("name");
assert(u != 0);
const std::string* argument = u->getString();
assert(argument != 0);
assert(*argument == "eventFoo");
}
void
simpleAugment()
{
std::list<std::string> files(1, "test_models/simple_augment.yang");
Schema schema(files);
Yang::Ast::InteriorNode* i = schema.findInteriorNode("A");
assert(i != 0);
i = i->findInteriorNode("B");
assert(i != 0);
i = i->findInteriorNode("C");
assert(i != 0);
const Yang::Ast::Unknown* u = i->findUnknown("immName");
assert(u != 0);
const std::string* argument = u->getString();
assert(argument != 0);
assert(*argument == "AC");
}
void
simpleUses()
{
std::list<std::string> files(1, "test_models/simple_uses.yang");
Schema schema(files);
}
void
simple()
{
std::list<std::string> files(1, "test_models/simple_schema.yang");
Schema schema(files);
}
int
main(int argc, char **argv)
{
simpleAugment();
simple();
simpleUses();
extension();
return 0;
}