testkit 0.2.2

A DSL for testing. Starting with APIs and Browser automation.
Documentation
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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
- title: Register
  POST: $.env.APIURL/users
  headers:
    Content-Type: application/json
    X-Requested-With: XMLHttpRequest
  json: '{"user":{"email":"$.env.EMAIL", "password":"$.env.PASSWORD", "username":"$.env.USERNAME"}}'
  asserts:
    - exists: $.resp.json.user
    - exists: $.resp.json.user.email
    - exists: $.resp.json.user.username
    - exists: $.resp.json.user.bio
    - exists: $.resp.json.user.image
    - exists: $.resp.json.user.token
- title: Login
  POST: '$.env.APIURL/users/login'
  headers:
    Content-Type: application/json
    X-Requested-With: XMLHttpRequest
  json: '{"user":{"email":"$.env.EMAIL", "password":"$.env.PASSWORD"}}'
  asserts:
    - exists: $.resp.body.json.user
    - exists: $.resp.body.json.user.email
    - exists: $.resp.body.json.user.username
    - exists: $.resp.body.json.user.bio
    - exists: $.resp.body.json.user.image
    - exists: $.resp.body.json.user.token
- title: Login and Remember Token
  POST: '$.env.APIURL/users/login'
  headers:
    Content-Type: application/json
    X-Requested-With: XMLHttpRequest
  json: '{"user":{"email":"$.env.EMAIL", "password":"$.env.PASSWORD"}}'
  asserts:
    - exists: $.resp.body.json.user
    - exists: $.resp.body.json.user.email
    - exists: $.resp.body.json.user.username
    - exists: $.resp.body.json.user.bio
    - exists: $.resp.body.json.user.image
    - exists: $.resp.body.json.user.token
- title: Current User
  GET: '$.env.APIURL/user'
  headers:
    Content-Type: application/json
    X-Requested-With: XMLHttpRequest
    Authorization: 'Token $.env.TOKEN'
  asserts:
    - exists: $.resp.json.user
    - exists: $.resp.json.user.email
    - exists: $.resp.json.user.username
    - exists: $.resp.json.user.bio
    - exists: $.resp.json.user.image
    - exists: $.resp.json.user.token
- title: Update User
  PUT: '$.env.APIURL/user'
  headers:
    Content-Type: application/json
    X-Requested-With: XMLHttpRequest
    Authorization: 'Token $.env.TOKEN'
  json: '{"user":{"email":"$.env.EMAIL"}}'
  asserts:
    - exists: $.resp.json.user
    - exists: $.resp.json.user.email
    - exists: $.resp.json.user.username
    - exists: $.resp.json.user.bio
    - exists: $.resp.json.user.image
    - exists: $.resp.json.user.token
- title: Get All Articles
  GET: '$.env.APIURL/articles'
  headers:
    Content-Type: application/json
    X-Requested-With: XMLHttpRequest
  asserts:
    - ok: $.resp.status == 200
    - exists: $.resp.body.json.articles
    - array: $.resp.body.json.articles
    - exists: $.resp.body.json.articlesCount
    - number: $.resp.body.json.articlesCount
    - exists: $.resp.body.json.articles[0].title
    - exists: $.resp.body.json.articles[0].slug
    - exists: $.resp.body.json.articles[0].body
    - exists: $.resp.body.json.articles[0].createdAt
    - date:  $.resp.body.json.articles[0].createdAt
    - exists: $.resp.body.json.articles[0].updatedAt
    - date:  $.resp.body.json.articles[0].updatedAt
    - exists: $.resp.body.json.articles[0].description
    - exists: $.resp.body.json.articles[0].tagList
    - array: $.resp.body.json.articles[0].tagList
    - exists: $.resp.body.json.articles[0].author
    - exists: $.resp.body.json.articles[0].favorited
    - exists: $.resp.body.json.articles[0].favoritesCount
    - number: $.resp.body.json.articles[0].favoritesCount
- title: Get Articles by Author
  GET: $.env.APIURL/articles?author=johnjacob
  headers:
      Content-Type: application/json
      X-Requested-With: XMLHttpRequest
  asserts:
    - ok: $.resp.status == 200
    - exists: $.resp.body.json.articles
    - array: $.resp.body.json.articles
    - exists: $.resp.body.json.articlesCount
    - number: $.resp.body.json.articlesCount
    - exists: $.resp.body.json.articles[0].title
    - exists: $.resp.body.json.articles[0].slug
    - exists: $.resp.body.json.articles[0].body
    - exists: $.resp.body.json.articles[0].createdAt
    - date: $.resp.body.json.articles[0].createdAt
    - exists: $.resp.body.json.articles[0].updatedAt
    - date: $.resp.body.json.articles[0].updatedAt
    - exists: $.resp.body.json.articles[0].description
    - exists: $.resp.body.json.articles[0].tagList
    - array: $.resp.body.json.articles[0].tagList
    - exists: $.resp.body.json.articles[0].author
    - exists: $.resp.body.json.articles[0].favorited
    - boolean: $.resp.body.json.articles[0].favorited
    - exists: $.resp.body.json.articles[0].favoritesCount
    - number: $.resp.body.json.articles[0].favoritesCount
    - ok: $.resp.body.json.articlesCount == $.resp.body.json.articles.length()
- title: Get Articles Favorited by Username
  GET: $.envn.APIURL/articles?favorited=$.envn.USERNAME
  headers:
    Content-Type: application/json
    X-Requested-With: XMLHttpRequest
  asserts:
    - ok: $.resp.status == 200
    - exists: $.resp.body.json.articles
    - array: $.resp.body.json.articles
    - exists: $.resp.body.json.articlesCount
    - number: $.resp.body.json.articlesCount
    - exists: $.resp.body.json.articles[0].title
    - exists: $.resp.body.json.articles[0].slug
    - exists: $.resp.body.json.articles[0].body
    - exists: $.resp.body.json.articles[0].createdAt
    - date: $.resp.body.json.articles[0].createdAt 
    - exists: $.resp.body.json.articles[0].updatedAt
    - date: $.resp.body.json.articles[0].updatedAt
    - exists: $.resp.body.json.articles[0].description
    - exists: $.resp.body.json.articles[0].tagList
    - array: $.resp.body.json.articles[0].tagList
    - exists: $.resp.body.json.articles[0].author
    - exists: $.resp.body.json.articles[0].favorited
    - exists: $.resp.body.json.articles[0].favoritesCount
    - number: $.resp.body.json.articles[0].favoritesCount
    - ok: $.resp.body.json.articlesCount == $.resp.body.json.articles.length()
- title: Get Articles by Tag
  GET: $.env.APIURL/articles?tag=dragons
  headers:
      Content-Type: application/json
      X-Requested-With: XMLHttpRequest
  asserts:
    - ok: $.resp.status == 200
    - exists: $.resp.body.json.articles
    - array: $.resp.body.json.articles
    - exists: $.resp.body.json.articlesCount
    - number: $.resp.body.json.articlesCount
    - exists: $.resp.body.json.articles[0].title
    - exists: $.resp.body.json.articles[0].slug
    - exists: $.resp.body.json.articles[0].body
    - exists: $.resp.body.json.articles[0].createdAt
    - date: $.resp.body.json.articles[0].createdAt
    - exists: $.resp.body.json.articles[0].updatedAt
    - date: $.resp.body.json.articles[0].updatedAt
    - exists: $.resp.body.json.articles[0].description
    - exists: $.resp.body.json.articles[0].tagList
    - array: $.resp.body.json.articles[0].tagList
    - exists: $.resp.body.json.articles[0].author
    - exists: $.resp.body.json.articles[0].favorited
    - exists: $.resp.body.json.articles[0].favoritesCount
    - number: $.resp.body.json.articles[0].favoritesCount
    - ok: $.resp.body.json.articlesCount == $.resp.body.json.articles.length()
- title: Create an Article
  POST: $.env.APIURL/articles
  headers:
    Content-Type: application/json
    X-Requested-With: XMLHttpRequest
    Authorization: Token $.env.token
  json: '{"article":{"title":"How to train your dragon", "description":"Ever wonder how?", "body":"Very carefully.", "tagList":["training", "dragons"]}}'
  asserts:
    - ok: $.resp.status == 200
    - exists: $.resp.body.json.article
    - ok: $.resp.body.json.article.title == "How to train your dragon"
    - ok: $.resp.body.json.article.description == "Ever wonder how?"
    - ok: $.resp.body.json.article.body == "Very carefully."
    - ok: $.resp.body.json.article.tagList == ["training", "dragons"]
    - date: $.resp.body.json.article.createdAt
    - date: $.resp.body.json.article.updatedAt
    - exists: $.resp.body.json.article.author
    - ok: $.resp.body.json.article.favorited == false
    - ok: $.resp.body.json.article.favoritesCount == 0
- title: Get Feed Articles
  GET: $.env.APIURL/articles/feed
  headers:
    Content-Type: application/json
    X-Requested-With: XMLHttpRequest
    Authorization: Token $.env.token
  asserts:
    - ok: $.resp.status == 200
    - exists: $.resp.body.json.articles
    - array: $.resp.body.json.articles
    - exists: $.resp.body.json.articlesCount
    - number: $.resp.body.json.articlesCount
    - ok: $.resp.body.json.articlesCount, $.resp.body.json.articles.length
    - ok: $.resp.body.json.articles.length() > 0
    - exists: $.resp.body.json.articles[0].title
    - exists: $.resp.body.json.articles[0].slug
    - exists: $.resp.body.json.articles[0].body
    - exists: $.resp.body.json.articles[0].createdAt
    - date: $.resp.body.json.articles[0].createdAt
    - exists: $.resp.body.json.articles[0].updatedAt
    - date: $.resp.body.json.articles[0].updatedAt
    - exists: $.resp.body.json.articles[0].description
    - exists: $.resp.body.json.articles[0].tagList
    - array: $.resp.body.json.articles[0].tagList
    - exists: $.resp.body.json.articles[0].author
    - exists: $.resp.body.json.articles[0].favorited
    - exists: $.resp.body.json.articles[0].favoritesCount
    - number: $.resp.body.json.articles[0].favoritesCount
- title: Get Articles by Author
  GET: '$.envn.APIURL/articles?author=$.envn.USERNAME'
  headers:
    Content-Type: application/json
    X-Requested-With: XMLHttpRequest
    Authorization: Token $.envn.TOKEN
  asserts:
    - ok: $.resp.status == 200
    - exists: $.resp.body.json.articles
    - array: $.resp.body.json.articles
    - exists: $.resp.body.json.articlesCount
    - number: $.resp.body.json.articlesCount
    - ok: $.resp.body.json.articlesCount == $.resp.body.json.articles.length()
    - exists: $.resp.body.json.articles[0].title
    - exists: $.resp.body.json.articles[0].slug
    - exists: $.resp.body.json.articles[0].body
    - exists: $.resp.body.json.articles[0].createdAt
    - date: $.resp.body.json.articles[0].createdAt
    - exists: $.resp.body.json.articles[0].updatedAt
    - date: $.resp.body.json.articles[0].updatedAt
    - exists: $.resp.body.json.articles[0].description
    - exists: $.resp.body.json.articles[0].tagList
    - array: $.resp.body.json.articles[0].tagList
    - exists: $.resp.body.json.articles[0].author
    - exists: $.resp.body.json.articles[0].favorited
    - exists: $.resp.body.json.articles[0].favoritesCount
    - number: $.resp.body.json.articles[0].favoritesCount
  exports:
    slug: $.resp.body.json.articles[0].slug
- title: Get Single Article by Slug
  GET: $.envn.APIURL/articles/$.stages[-1].slug'
  headers:
    Content-Type: application/json
    X-Requested-With: XMLHttpRequest
    Authorization: Token $.envn.TOKEN
  asserts:
    - ok: $.resp.status == 200
    - exists: $.resp.body.json.article
    - exists: $.resp.body.json.article.title
    - exists: $.resp.body.json.article.slug
    - exists: $.resp.body.json.article.body
    - exists: $.resp.body.json.article.createdAt
    - date: $.resp.body.json.article.createdAt
    - exists: $.resp.body.json.article.updatedAt
    - date: $.resp.body.json.article.updatedAt
    - exists: $.resp.body.json.article.description
    - exists: $.resp.body.json.article.tagList
    - array: $.resp.body.json.article.tagList
    - exists: $.resp.body.json.article.author
    - exists: $.resp.body.json.article.favorited
    - exists: $.resp.body.json.article.favoritesCount
    - number: $.resp.body.json.article.favoritesCount
- title: Articles by Tag
  GET: '$.env.APIURL/articles?tag=dragons'
  headers:
    Content-Type: application/json
    X-Requested-With: XMLHttpRequest
    Authorization: Token $.env.TOKEN
  asserts:
    - ok: $.resp.status == 200
    - exists: $.resp.body.json.articles
    - exists: $.resp.body.json.articlesCount
    - number: $.resp.body.json.articlesCount
    - exists: $.resp.body.json.articles[0]
    - exists: $.resp.body.json.articles[0].title
    - exists: $.resp.body.json.articles[0].slug
    - exists: $.resp.body.json.articles[0].body
    - exists: $.resp.body.json.articles[0].createdAt
    - date: $.resp.body.json.articles[0].createdAt
    - exists: $.resp.body.json.articles[0].updatedAt
    - date: $.resp.body.json.articles[0].updatedAt
    - exists: $.resp.body.json.articles[0].description
    - exists: $.resp.body.json.articles[0].tagList
    - array: $.resp.body.json.articles[0].tagList
    - ok: $.resp.body.json.articles[0].tagList[0] == dragons
    - ok: $.resp.body.json.articles[0].tagList[1] == training
    - exists: $.resp.body.json.articles[0].author
    - exists: $.resp.body.json.articles[0].favorited
    - exists: $.resp.body.json.articles[0].favoritesCount
    - number: $.resp.body.json.articles[0].favoritesCount
  exports:
    slug: $.resp.body.json.articles[0].slug
- title: Update Article
  PUT: '$.env.APIURL/articles/$.stages[-1].outputs.slug'
  headers:
    Content-Type: application/json
    X-Requested-With: XMLHttpRequest
    Authorization: Token $.env.TOKEN
  json: '{"article":{"body":"With two hands"}}'
  asserts:
    - ok: $.resp.status == 200
    - exists: $.resp.body.json.article
    - exists: $.resp.body.json.article.title
    - exists: $.resp.body.json.article.slug
    - exists: $.resp.body.json.article.body
    - exists: $.resp.body.json.article.createdAt
    - date: $.resp.body.json.article.createdAt
    - exists: $.resp.body.json.article.updatedAt
    - date: $.resp.body.json.article.updatedAt
    - exists: $.resp.body.json.article.description
    - exists: $.resp.body.json.article.tagList
    - array: $.resp.body.json.article.tagList
    - exists: $.resp.body.json.article.author
    - exists: $.resp.body.json.article.favorited
    - exists: $.resp.body.json.article.favoritesCount
    - number: $.resp.body.json.article.favoritesCount
  exports:
    slug: $.resp.body.json.articles[0].slug
- title: Favorite Article
  POST: '$.env.APIURL/articles/$.stages[-1].outputs.slug/favorite'
  headers:
    Content-Type: application/json
    X-Requested-With: XMLHttpRequest
    Authorization: Token $.env.TOKEN
  asserts:
    - ok: $.resp.status == 200
    - exists: $.resp.body.json.article
    - exists: $.resp.body.json.article.title
    - exists: $.resp.body.json.article.slug
    - exists: $.resp.body.json.article.body
    - exists: $.resp.body.json.article.createdAt
    - date: $.resp.body.json.article.createdAt
    - exists: $.resp.body.json.article.updatedAt
    - date: $.resp.body.json.article.updatedAt
    - exists: $.resp.body.json.article.description
    - exists: $.resp.body.json.article.tagList
    - array: $.resp.body.json.article.tagList
    - exists: $.resp.body.json.article.author
    - exists: $.resp.body.json.article.favorited
    - ok: $.resp.body.json.article.favorited == true
    - exists: $.resp.body.json.article.favoritesCount
    - number: $.resp.body.json.article.favoritesCount
    - ok: $.resp.body.json.article.favoritesCount > 0
- title: Articles Favorited by Username
  GET: '$.env.APIURL/articles?favorited=$.env.USERNAME'
  headers:
    Content-Type: application/json
    X-Requested-With: XMLHttpRequest
    Authorization: Token $.env.TOKEN
  asserts:
    - ok: $.resp.status == 200
    - exists: $.resp.body.json.articles
    - exists: $.resp.body.json.articlesCount
    - number: $.resp.body.json.articlesCount
    - exists: $.resp.body.json.articles[0]
    - exists: $.resp.body.json.articles[0].title
    - exists: $.resp.body.json.articles[0].slug
    - exists: $.resp.body.json.articles[0].body
    - exists: $.resp.body.json.articles[0].createdAt
    - date: $.resp.body.json.articles[0].createdAt
    - exists: $.resp.body.json.articles[0].updatedAt
    - date: $.resp.body.json.articles[0].updatedAt
    - exists: $.resp.body.json.articles[0].description
    - exists: $.resp.body.json.articles[0].tagList
    - array: $.resp.body.json.articles[0].tagList
    - exists: $.resp.body.json.articles[0].author
    - exists: $.resp.body.json.articles[0].favorited
    - ok: $.resp.body.json.articles[0].favorited, true
    - exists: $.resp.body.json.articles[0].favoritesCount
    - number: $.resp.body.json.articles[0].favoritesCount
    - ok: $.resp.body.json.articles[0].favoritesCount == 1
  exports:
    slug: $.resp.body.json.articles[0].slug
- title: Unfavorite Article
  DELETE: $.env.APIURL/articles/$.stages[-1].outputs.slug/favorite
  headers:
    Content-Type: application/json
    X-Requested-With: XMLHttpRequest
    Authorization: Token $.env.TOKEN
  asserts:
    - ok: $.resp.status == 200
    - exists: $.resp.body.json.article
    - exists: $.resp.body.json.article.title
    - exists: $.resp.body.json.article.slug
    - exists: $.resp.body.json.article.body
    - exists: $.resp.body.json.article.createdAt
    - date: $.resp.body.json.article.createdAt
    - exists: $.resp.body.json.article.updatedAt
    - date: $.resp.body.json.article.updatedAt
    - exists: $.resp.body.json.article.description
    - exists: $.resp.body.json.article.tagList
    - array: $.resp.body.json.article.tagList
    - exists: $.resp.body.json.article.author
    - exists: $.resp.body.json.article.favorited
    - ok: $.resp.body.json.article.favorited, false
    - exists: $.resp.body.json.article.favoritesCount
    - number: $.resp.body.json.article.favoritesCount
  exports:
    slug: $.resp.body.json.articles[0].slug
- title: Create Comment for Article
  POST: $.env.APIURL/articles/$.stages[-1].outputs.slug/comments
  headers:
    Content-Type: application/json
    X-Requested-With: XMLHttpRequest
    Authorization: Token $.env.TOKEN
  json: '{"comment":{"body":"Thank you so much!"}}'
  asserts:
    - ok: $.resp.status == 200
    - exists: $.resp.body.json.comment
    - exists: $.resp.body.json.comment.id
    - exists: $.resp.body.json.comment.body
    - exists: $.resp.body.json.comment.createdAt
    - date: $.resp.body.json.comment.createdAt
    - exists: $.resp.body.json.comment.updatedAt
    - date: $.resp.body.json.comment.updatedAt
    - exists: $.resp.body.json.comment.author
  exports:
    slug: $.resp.body.json.articles[0].slug
- title: All Comments for Article
  GET:  '$.env.APIURL/articles/$.stages[-1].outputs.slug/comments'
  headers:
    Content-Type: application/json
    X-Requested-With: XMLHttpRequest
    Authorization: Token $.env.TOKEN
  asserts:
    - ok: $.resp.status == 200
    - exists: $.resp.body.json.comments
    - exists: $.resp.body.json.comments[0].id
    - exists: $.resp.body.json.comments[0].body
    - exists: $.resp.body.json.comments[0].createdAt
    - date: $.resp.body.json.comments[0].createdAt
    - exists: $.resp.body.json.comments[0].updatedAt
    - date: $.resp.body.json.comments[0].updatedAt
    - exists: $.resp.body.json.comments[0].author
  exports:
    slug: $.resp.body.json.articles[0].slug
- title: All Comments for Article without login
  GET: '$.env.APIURL/articles/$.stages[-1].outputs.slug/comments'
  headers:
    Content-Type: application/json
    X-Requested-With: XMLHttpRequest
  asserts:
    - ok: $.resp.status == 200
    - exists: $.resp.body.json.comments
    - exists: $.resp.body.json.comments[0].id
    - exists: $.resp.body.json.comments[0].body
    - exists: $.resp.body.json.comments[0].createdAt
    - date: $.resp.body.json.comments[0].createdAt
    - exists: $.resp.body.json.comments[0].updatedAt
    - date: $.resp.body.json.comments[0].updatedAt
    - exists: $.resp.body.json.comments[0].author
  exports:
    slug: $.resp.body.json.articles[0].slug
- title: Delete Comment for Article
  DELETE: '$.env.APIURL/articles/$.stages[-1].outputs.slug/comments/{{commentId}}'
  headers:
    Content-Type: application/json
    X-Requested-With: XMLHttpRequest
    Authorization: Token $.env.TOKEN
  asserts:
    - ok: $.resp.status == 200
    - exists: $.resp.body.json.comment
    - exists: $.resp.body.json.comment.id
    - exists: $.resp.body.json.comment.body
    - exists: $.resp.body.json.comment.createdAt
    - date: $.resp.body.json.comment.createdAt
    - exists: $.resp.body.json.comment.updatedAt
    - date: $.resp.body.json.comment.updatedAt
    - exists: $.resp.body.json.comment.author
  exports:
    slug: $.resp.body.json.articles[0].slug
- title: Delete Article
  DELETE: '$.env.APIURL/articles/$.stages[-1].outputs.slug'
  headers:
    Content-Type: application/json
    X-Requested-With: XMLHttpRequest
    Authorization: Token $.env.TOKEN
  asserts:
    - ok: $.resp.status == 200
- title: Profile
  GET: '$.env.APIURL/profiles/celeb_$.env.USERNAME'
  headers:
    Content-Type: application/json
    X-Requested-With: XMLHttpRequest
    Authorization: Token $.env.TOKEN
  asserts:
    - ok: $.resp.status == 200
    - exists: $.resp.body.json.profile
    - exists: $.resp.body.json.profile.username
    - exists: $.resp.body.json.profile.bio
    - exists: $.resp.body.json.profile.image
    - exists: $.resp.body.json.profile.following
- title: Follow Profile
  POST: '$.env.APIURL/profiles/celeb_$.env.USERNAME/follow'
  headers:
    Content-Type: application/json
    X-Requested-With: XMLHttpRequest
    Authorization: Token $.env.TOKEN
  json: '{"user":{"email":"{{EMAIL}}"}}'
  asserts:
    - ok: $.resp.status == 200
    - exists: $.resp.body.json.profile
    - exists: $.resp.body.json.profile.username
    - exists: $.resp.body.json.profile.bio
    - exists: $.resp.body.json.profile.image
    - exists: $.resp.body.json.profile.following
    - ok: $.resp.body.json.profile.following == true
- title: Unfollow Profile
  DELETE: '$.env.APIURL/profiles/celeb_$.env.USERNAME/follow'
  headers:
    Content-Type: application/json
    X-Requested-With: XMLHttpRequest
  asserts:
    - ok: $.resp.status == 200
    - exists: $.resp.body.json.profile
    - exists: $.resp.body.json.profile.username
    - exists: $.resp.body.json.profile.bio
    - exists: $.resp.body.json.profile.image
    - exists: $.resp.body.json.profile.following
    - ok: $.resp.body.json.profile.following == false
- title: All Tags
  GET: '$.env.APIURL/tags'
  headers:
    Content-Type: application/json
    X-Requested-With: XMLHttpRequest
  asserts:
    - ok: $.resp.status == 200
    - exists: $.resp.body.json.tags
    - array: $.resp.body.json.tags