summaryrefslogtreecommitdiff
path: root/examples/muck/muck.yaml
blob: 967ab56d7afae6a78f4d948435e86acba4613ab8 (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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
- given: "a fresh Muck server"
  impl:
    python:
      function: fixme

- given: "I am {name}"
  impl:
    python:
      function: fixme

- given: "I am {name}, with super capability"
  impl:
    python:
      function: fixme

- when: "I do POST /res with (?P<json>\\{.*\\})"
  impl:
    python:
      function: fixme
  regex: true
  types:
    json: text

- when: "I do PUT /res with Muck-Id: \\{(?P<id>\\S+)\\}, Muck-Revision: \\{(?P<rev>\\S+)\\}, and body (?P<json>\\{.*\\})"
  impl:
    python:
      function: fixme
  regex: true
  types:
    id: word
    rev: word
    json: text

- when: "I do GET /res with Muck-Id: \\{(?P<id>\\S+)\\}"
  impl:
    python:
      function: fixme
  regex: true
  types:
    id: word

- when: "I do DELETE /res with Muck-Id: \\{(?P<id>\\S+)\\}"
  impl:
    python:
      function: fixme
  regex: true
  types:
    id: word

- when: "I restart Muck"
  impl:
    python:
      function: fixme
  regex: true

- then: "response code is {code:uint}"
  impl:
    python:
      function: fixme

- then: "header {header} is {name}"
  impl:
    python:
      function: fixme

- then: "header (?P<header>\\S+) matches \\{(?P<name>\\S+)\\}"
  impl:
    python:
      function: fixme
  regex: true
  types:
    header: word
    name: word

- then: "body matches (?P<json>\\{.*\\})"
  impl:
    python:
      function: fixme
  regex: true
  types:
    json: text

- then: "revisions \\{(?P<rev1>\\S+)\\} and \\{(?P<rev2>\\S+)\\} are different"
  impl:
    python:
      function: fixme
  regex: true
  types:
    rev1: word
    rev2: word