-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprocessor_test.cpp
124 lines (96 loc) · 3.49 KB
/
processor_test.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
#include <gtest/gtest.h>
#include <gmock/gmock.h>
#include "processor.h"
using ::testing::Eq;
TEST(Processor, UnknownAction) {
EXPECT_THAT(Processor{}.serve(R"({"action":"RemoveGraph"})"),
Eq(R"({"error":"Unknown action"})"));
}
TEST(Processor, NoAction) {
EXPECT_THAT(Processor{}.serve(R"({})"), Eq(R"({"error":"Unknown action"})"));
}
TEST(Processor, AddVertex) {
EXPECT_THAT(Processor{}.serve(R"({"action":"AddVertex"})"), Eq(R"({"id":"0"})"));
}
TEST(Processor, RemoveVertex) {
Processor p;
p.serve(R"({"action":"AddVertex"})");
EXPECT_THAT(p.serve(R"({"action":"RemoveVertex","id":0})"), Eq(R"({})"));
}
TEST(Processor, RemoveVertexWithWrongId) {
EXPECT_THAT(Processor{}.serve(R"({"action":"RemoveVertex","id":2})"),
Eq(R"({"error":"Wrong vertex ID"})"));
}
TEST(Processor, RemoveVertexWithoutId) {
EXPECT_THAT(Processor{}.serve(R"({"action":"RemoveVertex"})"),
Eq(R"({"error":"Not enough data"})"));
}
TEST(Processor, AddEdge) {
Processor p;
p.serve(R"({"action":"AddVertex"})");
p.serve(R"({"action":"AddVertex"})");
EXPECT_THAT(p.serve(R"({"action":"AddEdge","from":0,"to":1,"weight":3.4})"),
Eq(R"({})"));
}
TEST(Processor, AddEdgeWithWrongID) {
Processor p;
p.serve(R"({"action":"AddVertex"})");
EXPECT_THAT(p.serve(R"({"action":"AddEdge","from":0,"to":1,"weight":3.4})"),
Eq(R"({"error":"Wrong vertex ID"})"));
}
TEST(Processor, AddEdgeWithoutWeight) {
EXPECT_THAT(Processor{}.serve(R"({"action":"AddEdge","from":0,"to":1})"),
Eq(R"({"error":"Not enough data"})"));
}
TEST(Processor, AddEdgeWithoutTo) {
EXPECT_THAT(Processor{}.serve(R"({"action":"AddEdge","from":0,"weight":3.4})"),
Eq(R"({"error":"Not enough data"})"));
}
TEST(Processor, AddEdgeWithoutFrom) {
EXPECT_THAT(Processor{}.serve(R"({"action":"AddEdge","to":1,"weight":3.4})"),
Eq(R"({"error":"Not enough data"})"));
}
TEST(Processor, AddEdgeWithNegativeWeight) {
Processor p;
p.serve(R"({"action":"AddVertex"})");
p.serve(R"({"action":"AddVertex"})");
EXPECT_THAT(p.serve(R"({"action":"AddEdge","from":0,"to":1,"weight":-1.3})"),
Eq(R"({"error":"Negative weight"})"));
}
TEST(Processor, RemoveEdge) {
Processor p;
p.serve(R"({"action":"AddVertex"})");
p.serve(R"({"action":"AddVertex"})");
p.serve(R"({"action":"AddEdge","from":0,"to":1,"weight":3.4})");
EXPECT_THAT(p.serve(R"({"action":"RemoveEdge","from":0,"to":1})"), Eq(R"({})"));
}
TEST(Processor, RemoveEdgeWithWrongID) {
Processor p;
p.serve(R"({"action":"AddVertex"})");
EXPECT_THAT(p.serve(R"({"action":"RemoveEdge","from":0,"to":1})"),
Eq(R"({"error":"Wrong vertex ID"})"));
}
TEST(Processor, RemoveEdgeWithoutTo) {
EXPECT_THAT(Processor{}.serve(R"({"action":"RemoveEdge","from":0})"),
Eq(R"({"error":"Not enough data"})"));
}
TEST(Processor, RemoveEdgeWithoutFrom) {
EXPECT_THAT(Processor{}.serve(R"({"action":"RemoveEdge","to":1})"),
Eq(R"({"error":"Not enough data"})"));
}
TEST(Processor, GetPath) {
Processor p;
p.serve(R"({"action":"AddVertex"})");
p.serve(R"({"action":"AddVertex"})");
p.serve(R"({"action":"AddEdge","from":0,"to":1,"weight":3.4})");
EXPECT_THAT(p.serve(R"({"action":"GetPath","from":0,"to":1})"),
Eq(R"({"ids":["0","1"]})"));
}
TEST(Processor, GetPathWithoutFrom) {
EXPECT_THAT(Processor{}.serve(R"({"action":"GetPath","to":1})"),
Eq(R"({"error":"Not enough data"})"));
}
TEST(Processor, GetPathWithoutTo) {
EXPECT_THAT(Processor{}.serve(R"({"action":"GetPath","from":0})"),
Eq(R"({"error":"Not enough data"})"));
}