summaryrefslogtreecommitdiffhomepage
path: root/test-cpp.cpp
blob: aabc4f437b24a3d0560a7db0d9b317607f79c3a8 (plain)
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
#include "bnf.h"
#include "cpp.h"
#include "cppbnf.h"
#include "lexer.h"
#include "grammer.h"
#include "minicc.h"
#include "debug.h"

#include <boost/algorithm/string.hpp>

#include "gmock/gmock.h"
#include "gtest/gtest.h"

#include <algorithm>
#include <cctype>
#include <deque>
#include <map>
#include <memory>
#include <string>
#include <utility>
#include <vector>

class CppTest: public ::testing::Test
{
protected:
 CppTest() {
  debug = true;
 }
 ~CppTest() {
 }
};

#if 1
TEST_F(CppTest, preprocessing_tokenize) {
 CPP cpp;
 auto pp_tokens = cpp.preprocessing_tokenize("int main() { return 1; }");

 ASSERT_EQ(pp_tokens.size(), 9);

 auto tokens = cpp.tokens_from_pptokens(pp_tokens);

 ASSERT_EQ(tokens.size(), 9);

 auto nodes = cpp.analysis(tokens);
 
 ASSERT_EQ(nodes.size(), 44);
}
#endif

TEST_F(CppTest, preprocessing_tokenize_compile_error) {
 CPP cpp;
 auto ppTree = cpp.preprocessing_tokenize("in ma");

 auto tokens = cpp.tokens_from_pptokens(ppTree);
 
 ASSERT_EQ(tokens.size(), 2);

 try {
  auto nodes = cpp.analysis(tokens);
 } catch (const std::exception& ex) {
  EXPECT_EQ(ex.what(), "Compile error"s);
  return;
 }

 FAIL() << "Exception expected";
}

#if 0
TEST(Cpp, translate) {
 CPP::translate();
}
#endif