summaryrefslogtreecommitdiffstatshomepage
path: root/www/static/test/core/config.js
blob: 4aa7611a53db52ae8d071ece71984b96d60deeb0 (plain) (blame)
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
describe('htmx config test', function() {
  beforeEach(function() {
    this.server = makeServer()
    clearWorkArea()
  })

  afterEach(function() {
    this.server.restore()
    clearWorkArea()
  })

  it('swaps normally with no config update', function() {
    var responseCode = null
    this.server.respondWith('GET', '/test', function(xhr, id) {
      xhr.respond(responseCode, { 'Content-Type': 'text/html' }, '' + responseCode)
    })

    responseCode = 200 // 200 should cause a swap by default
    var btn = make('<button hx-get="/test">Click Me!</button>')
    btn.click()
    this.server.respond()
    btn.innerHTML.should.equal('200')

    responseCode = 204 // 204 should not cause a swap by default
    var btn = make('<button hx-get="/test">Click Me!</button>')
    btn.click()
    this.server.respond()
    btn.innerHTML.should.equal('Click Me!')

    responseCode = 300 // 300 should cause a swap by default
    var btn = make('<button hx-get="/test">Click Me!</button>')
    btn.click()
    this.server.respond()
    btn.innerHTML.should.equal('300')

    responseCode = 400 // 400 should not cause a swap by default
    var btn = make('<button hx-get="/test">Click Me!</button>')
    btn.click()
    this.server.respond()
    btn.innerHTML.should.equal('Click Me!')

    responseCode = 500 // 500 should not cause a swap by default
    var btn = make('<button hx-get="/test">Click Me!</button>')
    btn.click()
    this.server.respond()
    btn.innerHTML.should.equal('Click Me!')
  })

  it('swap all config should swap everything', function() {
    var originalResponseHandling = htmx.config.responseHandling
    try {
      htmx.config.responseHandling = [{ code: '...', swap: true }]

      var responseCode = null
      this.server.respondWith('GET', '/test', function(xhr, id) {
        xhr.respond(responseCode, { 'Content-Type': 'text/html' }, '' + responseCode)
      })

      responseCode = 200 // 200 should cause a swap by default
      var btn = make('<button hx-get="/test">Click Me!</button>')
      btn.click()
      this.server.respond()
      btn.innerHTML.should.equal('200')

      responseCode = 203 // 203 should not cause a swap by default
      var btn = make('<button hx-get="/test">Click Me!</button>')
      btn.click()
      this.server.respond()
      btn.innerHTML.should.equal('203')

      responseCode = 300 // 300 should cause a swap by default
      var btn = make('<button hx-get="/test">Click Me!</button>')
      btn.click()
      this.server.respond()
      btn.innerHTML.should.equal('300')

      responseCode = 400 // 400 should not cause a swap by default
      var btn = make('<button hx-get="/test">Click Me!</button>')
      btn.click()
      this.server.respond()
      btn.innerHTML.should.equal('400')

      responseCode = 500 // 500 should not cause a swap by default
      var btn = make('<button hx-get="/test">Click Me!</button>')
      btn.click()
      this.server.respond()
      btn.innerHTML.should.equal('500')
    } finally {
      htmx.config.responseHandling = originalResponseHandling
    }
  })

  it('non mapped responseHandling config will not swap', function() {
    var originalResponseHandling = htmx.config.responseHandling
    try {
      htmx.config.responseHandling = [{ code: '200', swap: true }]

      var responseCode = null
      this.server.respondWith('GET', '/test', function(xhr, id) {
        xhr.respond(responseCode, { 'Content-Type': 'text/html' }, '' + responseCode)
      })

      responseCode = 400 // 400 should not swap as not found in config
      var btn = make('<button hx-get="/test">Click Me!</button>')
      btn.click()
      this.server.respond()
      btn.innerHTML.should.equal('Click Me!')

      responseCode = 200 // 200 should cause a swap by default
      var btn = make('<button hx-get="/test">Click Me!</button>')
      btn.click()
      this.server.respond()
      btn.innerHTML.should.equal('200')
    } finally {
      htmx.config.responseHandling = originalResponseHandling
    }
  })

  it('can change the target of a given response code', function() {
    var originalResponseHandling = htmx.config.responseHandling
    try {
      htmx.config.responseHandling = originalResponseHandling.slice()
      htmx.config.responseHandling.unshift({ code: '444', swap: true, target: '#a-div' })

      var responseCode = null
      this.server.respondWith('GET', '/test', function(xhr, id) {
        xhr.respond(responseCode, { 'Content-Type': 'text/html' }, '' + responseCode)
      })

      responseCode = 444
      var div = make('<div id="a-div">Another Div</div>')
      var btn = make('<button hx-get="/test">Click Me!</button>')
      btn.click()
      this.server.respond()
      btn.innerHTML.should.equal('Click Me!')
      div.innerHTML.should.equal('444')
    } finally {
      htmx.config.responseHandling = originalResponseHandling
    }
  })

  it('throws targetError if you the target in responseHandling is invalid', function() {
    var originalResponseHandling = htmx.config.responseHandling
    try {
      var error = false
      var handler = htmx.on('htmx:targetError', function(evt) {
        evt.detail.target.should.equal('#a-div')
        error = true
      })
      htmx.config.responseHandling = originalResponseHandling.slice()
      htmx.config.responseHandling.unshift({ code: '444', swap: true, target: '#a-div' })

      var responseCode = null
      this.server.respondWith('GET', '/test', function(xhr, id) {
        xhr.respond(responseCode, { 'Content-Type': 'text/html' }, '' + responseCode)
      })

      responseCode = 444
      var btn = make('<button hx-get="/test">Click Me!</button>')
      btn.click()
      this.server.respond()
      btn.innerHTML.should.equal('Click Me!')
    } catch (e) {
    } finally {
      htmx.config.responseHandling = originalResponseHandling
      htmx.off('htmx:targetError', handler)
      error.should.equal(true)
    }
  })

  it('can change the target to "this" in a given response code', function() {
    var originalResponseHandling = htmx.config.responseHandling
    try {
      htmx.config.responseHandling = originalResponseHandling.slice()
      htmx.config.responseHandling.unshift({ code: '444', swap: true, target: 'this' })

      var responseCode = null
      this.server.respondWith('GET', '/test', function(xhr, id) {
        xhr.respond(responseCode, { 'Content-Type': 'text/html' }, '' + responseCode)
      })

      responseCode = 444
      var div = make('<div id="a-div">Another Div</div>')
      var btn = make('<button hx-target="#a-div" hx-get="/test">Click Me!</button>')
      btn.click()
      this.server.respond()
      btn.innerHTML.should.equal('444')
      div.innerHTML.should.equal('Another Div')
    } finally {
      htmx.config.responseHandling = originalResponseHandling
    }
  })

  it('can change the swap type of a given response code', function() {
    var originalResponseHandling = htmx.config.responseHandling
    try {
      htmx.config.responseHandling = originalResponseHandling.slice()
      htmx.config.responseHandling.unshift({ code: '444', swap: true, target: '#a-div', swapOverride: 'outerHTML' })

      var responseCode = null
      this.server.respondWith('GET', '/test', function(xhr, id) {
        xhr.respond(responseCode, { 'Content-Type': 'text/html' }, '' + responseCode)
      })

      responseCode = 444
      var div = make('<div><div id="a-div">Another Div</div></div>')
      var btn = make('<button hx-get="/test">Click Me!</button>')
      btn.click()
      this.server.respond()
      btn.innerHTML.should.equal('Click Me!')
      div.innerHTML.should.equal('444')
    } finally {
      htmx.config.responseHandling = originalResponseHandling
    }
  })

  it('can change the select of a given response code', function() {
    var originalResponseHandling = htmx.config.responseHandling
    try {
      htmx.config.responseHandling = originalResponseHandling.slice()
      htmx.config.responseHandling.unshift({ code: '444', swap: true, select: '.foo' })

      var responseCode = null
      this.server.respondWith('GET', '/test', function(xhr, id) {
        xhr.respond(responseCode, { 'Content-Type': 'text/html' }, "<div><a class='foo'>" + responseCode + '</a></div>')
      })

      responseCode = 444
      var btn = make('<button hx-get="/test">Click Me!</button>')
      btn.click()
      this.server.respond()
      btn.innerHTML.should.equal('<a class="foo">444</a>')
    } finally {
      htmx.config.responseHandling = originalResponseHandling
    }
  })

  it('can change if the title is ignored for a given response code', function() {
    var originalResponseHandling = htmx.config.responseHandling
    var originalTitle = document.title
    try {
      htmx.config.responseHandling = originalResponseHandling.slice()
      htmx.config.responseHandling.unshift({ code: '444', swap: true, ignoreTitle: true })

      var responseCode = null
      this.server.respondWith('GET', '/test', function(xhr, id) {
        xhr.respond(responseCode, { 'Content-Type': 'text/html' }, '<title>Should Not Be Set</title>' + responseCode)
      })

      responseCode = 444
      var btn = make('<button hx-get="/test">Click Me!</button>')
      btn.click()
      this.server.respond()
      btn.innerHTML.should.equal('444')
      document.title.should.equal(originalTitle)
    } finally {
      htmx.config.responseHandling = originalResponseHandling
    }
  })

  it('can change if error for a given response code', function() {
    var originalResponseHandling = htmx.config.responseHandling
    var errorDetected = false
    var handler = htmx.on('htmx:responseError', function() {
      errorDetected = true
    })
    try {
      htmx.config.responseHandling = originalResponseHandling.slice()
      htmx.config.responseHandling.unshift({ code: '444', swap: true, error: false })

      var responseCode = null
      this.server.respondWith('GET', '/test', function(xhr, id) {
        xhr.respond(responseCode, { 'Content-Type': 'text/html' }, '' + responseCode)
      })

      responseCode = 444
      var btn = make('<button hx-get="/test">Click Me!</button>')
      btn.click()
      this.server.respond()
      btn.innerHTML.should.equal('444')
      errorDetected.should.equal(false)
    } finally {
      htmx.off('htmx:responseError', handler)
      htmx.config.responseHandling = originalResponseHandling
    }
  })

  it('can trigger an event for a given response code', function() {
    var originalResponseHandling = htmx.config.responseHandling
    var myEventWasTriggered = false
    var handler = htmx.on('myEvent', function() {
      myEventWasTriggered = true
    })
    try {
      htmx.config.responseHandling = originalResponseHandling.slice()
      htmx.config.responseHandling.unshift({ code: '444', swap: false, error: false, event: 'myEvent' })

      var responseCode = null
      this.server.respondWith('GET', '/test', function(xhr, id) {
        xhr.respond(responseCode, { 'Content-Type': 'text/html' }, '' + responseCode)
      })

      responseCode = 444
      var btn = make('<button hx-get="/test">Click Me!</button>')
      btn.click()
      this.server.respond()
      btn.innerHTML.should.equal('Click Me!')
      myEventWasTriggered.should.equal(true)
    } finally {
      htmx.off('htmx:responseError', handler)
      htmx.config.responseHandling = originalResponseHandling
    }
  })
})