Press n or j to go to the next uncovered block, b, p or k for the previous block.
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 | 5x | export default [ { comment: '4.1. add with missing object', doc: {q: {bar: 2}}, patch: [{op: 'add', path: '/a/b', value: 1}], error: 'path /a does not exist -- missing objects are not created recursively', }, { comment: 'A.1. Adding an Object Member', doc: { foo: 'bar', }, patch: [{op: 'add', path: '/baz', value: 'qux'}], expected: { baz: 'qux', foo: 'bar', }, }, { comment: 'A.2. Adding an Array Element', doc: { foo: ['bar', 'baz'], }, patch: [{op: 'add', path: '/foo/1', value: 'qux'}], expected: { foo: ['bar', 'qux', 'baz'], }, }, { comment: 'A.3. Removing an Object Member', doc: { baz: 'qux', foo: 'bar', }, patch: [{op: 'remove', path: '/baz'}], expected: { foo: 'bar', }, }, { comment: 'A.4. Removing an Array Element', doc: { foo: ['bar', 'qux', 'baz'], }, patch: [{op: 'remove', path: '/foo/1'}], expected: { foo: ['bar', 'baz'], }, }, { comment: 'A.5. Replacing a Value', doc: { baz: 'qux', foo: 'bar', }, patch: [{op: 'replace', path: '/baz', value: 'boo'}], expected: { baz: 'boo', foo: 'bar', }, }, { comment: 'A.6. Moving a Value', doc: { foo: { bar: 'baz', waldo: 'fred', }, qux: { corge: 'grault', }, }, patch: [{op: 'move', from: '/foo/waldo', path: '/qux/thud'}], expected: { foo: { bar: 'baz', }, qux: { corge: 'grault', thud: 'fred', }, }, }, { comment: 'A.7. Moving an Array Element', doc: { foo: ['all', 'grass', 'cows', 'eat'], }, patch: [{op: 'move', from: '/foo/1', path: '/foo/3'}], expected: { foo: ['all', 'cows', 'eat', 'grass'], }, }, { comment: 'A.8. Testing a Value: Success', doc: { baz: 'qux', foo: ['a', 2, 'c'], }, patch: [ {op: 'test', path: '/baz', value: 'qux'}, {op: 'test', path: '/foo/1', value: 2}, ], expected: { baz: 'qux', foo: ['a', 2, 'c'], }, }, { comment: 'A.9. Testing a Value: Error', doc: { baz: 'qux', }, patch: [{op: 'test', path: '/baz', value: 'bar'}], error: 'string not equivalent', }, { comment: 'A.10. Adding a nested Member Object', doc: { foo: 'bar', }, patch: [{op: 'add', path: '/child', value: {grandchild: {}}}], expected: { foo: 'bar', child: { grandchild: {}, }, }, }, { comment: 'A.11. Ignoring Unrecognized Elements', doc: { foo: 'bar', }, patch: [{op: 'add', path: '/baz', value: 'qux', xyz: 123}], expected: { foo: 'bar', baz: 'qux', }, }, { comment: 'A.12. Adding to a Non-existent Target', doc: { foo: 'bar', }, patch: [{op: 'add', path: '/baz/bat', value: 'qux'}], error: 'add to a non-existent target', }, { comment: 'A.13 Invalid JSON Patch Document', doc: { foo: 'bar', }, patch: [ // @ts-ignore {path: '/baz', value: 'qux', op: 'remove'}, ], error: "operation has two 'op' members", disabled: true, }, { comment: 'A.14. ~ Escape Ordering', doc: { '/': 9, '~1': 10, }, patch: [{op: 'test', path: '/~01', value: 10}], expected: { '/': 9, '~1': 10, }, }, { comment: 'A.15. Comparing Strings and Numbers', doc: { '/': 9, '~1': 10, }, patch: [{op: 'test', path: '/~01', value: '10'}], error: 'number is not equal to string', }, { comment: 'A.16. Adding an Array Value', doc: { foo: ['bar'], }, patch: [{op: 'add', path: '/foo/-', value: ['abc', 'def']}], expected: { foo: ['bar', ['abc', 'def']], }, }, ]; |