-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_data.txt
221 lines (152 loc) · 4.1 KB
/
test_data.txt
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
206
207
208
209
210
211
212
213
214
215
216
217
218
Case 1: wrong inputs
-----------------------
Input : anthing
Output:
...Invalid Inputs...
Allowed Inputs :
place X,Y,F ; move ; left ; right ; report
**********************************************************
Case 2: Valid Inputs are case insenstive
----------------------------------------
Input : PLACE 2,3 , north
Output:
robot is at : 2, 3, north
Input : place 2,3 , north
Output:
robot is at : 2, 3, north
Input : PLacE 2,3 , north
Output:
robot is at : 2, 3, north
Input : MoVe
Output:
robot is at : 2, 4, north
**********************************************************
Case 3: Other valid commands given before PLACE command
---------------------------------------------
Input: move
Output:
robot is Inactive
You must enter "place" command first to start the robot
Input: left
Output:
robot is Inactive
You must enter "place" command first to start the robot
Input: report
Output:
robot is Inactive
You must enter "place" command first to start the robot
**********************************************************
Case 4: Place command given with wrong number of arguments
_________________________________________________________
Input: place 2 ,3 ,north, south
Output:
...wrong no. of argument for place...
place need 3 arguments: X, Y, F
Input: place 2 ,3
Output:
...wrong no. of argument for place...
place need 3 arguments: X, Y, F
**************************************************
Case 5: Place command given with Cordinate outside table[5 x 5]
----------------------------------------------------------------
Input: place 5 6 west
Output:
...Cordinates out of table...
reset cordinates to Place it on table
Input: place 6 3 north
Output:
...Cordinates out of table...
reset cordinates to Place it on table
Input: place 8 6 north
Output:
...Cordinates out of table...
reset cordinates to Place it on table
Input: place -1 3 north
Output:
...Cordinates out of table...
reset cordinates to Place it on table
***********************************************
Case 6: Place command given with wrong direction i,e not in north, east, west, south
------------------------------------------------------------------------------------
Input: place 2 3 xyz
Output:
...wrong direection...
use: north, south, east, west
Input: place 2 3 noth
Output:
...wrong direection...
use: north, south, east, west
Input: place 2 3 eaast
Output:
...wrong direection...
use: north, south, east, west
********************************************
Case 7: Place command with non integer cordinate
------------------------------------------------
Input: place x 3 north
Output:
...wrong cordinate...
place cordinate takes only integer value
Input: place x y north
Output:
...wrong cordinate...
place cordinate takes only integer value
*********************************************
Case 8: Prevent robot to fall from move outside table
-----------------------------------------------------
Input: place 2 3 north
move
move
move
Output:
...wrong move...
change direction and move
Input: place 2 3 west
move
move
move
Output:
...wrong move...
change direction and move
******************************************
Case 9: Robot is allowed to move from edge of table after changing direction
----------------------------------------------------------------------------
Input: place 2 3 west
move
move
report
move
left
move
move
report
Output:
robot is at : 0, 1, south
******************************************
Case 10: direction change properly with left command i,e anticlockwise
Input: place 2,3 west
left
left
Output:
robot is at : 2, 3, east
Input: place 2,3 north
left
left
Output:
robot is at : 2, 3, south
*************************************
Case 11: direction change properly with right command i,e clockwise
Input: place 2,3 west
right
right
Output:
robot is at : 2, 3, south
Input: place 2,3 north
right
right
Output:
robot is at : 2, 3, west
******************************************
Case 12 : User exit out of the game at any time with stop command
Input: stop
Output:exit out of the game