-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBDD.js
209 lines (126 loc) · 3.23 KB
/
BDD.js
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
/**
* A simple BDD style story interpretation
* which will convert the story to a JSON request and policy
* integration long term.
*/
var fs = require('fs');
var lazy = require("lazy");
var events = require('events');
var eventEmitter = new events.EventEmitter();
var jsonRequest = {
subject: {},
resource: {},
action: {}
};
var policyToInsert = {
// Part II
};
var nouns = ["to", "and", "it", "a"];
var previous; // used to store the previous keyword so AND works.
eventEmitter.on("request", function(story)
{
console.log("Request received to translate story");
interpret(story, function(result){
setTimeout(function() {
console.log(result);
JSON.stringify(jsonRequest);
console.log("JSON");
console.log(jsonRequest);
}, 2000);
});
});
function interpret(input, result){
new lazy(fs.createReadStream(input))
.lines
.forEach(function(line){
var words = line.toString().split(" ");
line = line.toString();
console.log(line);
if(words[0] == "Story:")
{
Story(words[1], function(callback){
console.log("Story processed");
});
}
if(words[0] == "Scenario:")
{
Scenario(words[1], function(callback){
console.log("Scenario processed");
});
}
if(words[0] == "Given")
{
previous = "Given";
Given(line.substr(line.indexOf(" ") +1), function(callback){
console.log("Given processed");
});
}
if(words[0] == "When")
{
previous = "When";
When(line.substr(line.indexOf(" ") +1), function(callback){
console.log("When processed");
});
}
if(words[0] == "Then")
{
console.log("In the then");
previous = "Then";
Then(line.substr(line.indexOf(" ") +1), function(callback){
console.log("Then processed");
});
}
if(words[0] == "And")
{
And(line.substr(line.indexOf(" ") +1), function(callback){
console.log("And processed");
});
}
}
);
result("Successfully converted story to JSON");
};
function Story(story, callback)
{
jsonRequest.id = story;
console.log(story);
callback("done");
}
function Scenario(scenario, callback)
{
jsonRequest.ruleID = scenario;
console.log(scenario);
callback("done");
}
function Given(sentence, callback)
{
console.log(sentence);
// Resource is the target we want to edit
var words = sentence.split(" ");
for(var i = 0; i < words.length;i++)
{
var x = words[0] in nouns;
console.log("XXX " + x);
if((words[0] in nouns) === true)
{
console.log(words[0] + " is a noun");
}
}
callback("done");
}
function When(sentence, callback)
{
console.log(sentence);
callback("done");
}
function Then(sentence, callback)
{
console.log(sentence);
callback("done");
}
function And(sentence, callback)
{
console.log(sentence);
callback("done");
}
eventEmitter.emit("request", './test.story');