diff options
author | Alexander Petros <apetros15@gmail.com> | 2023-09-19 12:07:24 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-19 11:07:24 -0500 |
commit | d1288d202aecbe46417e6978615e21ba3c74c8cf (patch) | |
tree | 400b8116eb485d8b076c045db67ac9fb492f3bfb /www/static/test/ext/json-enc.js | |
parent | 66023f21f9f9bb4352adde2673995d2957bbcf2d (diff) | |
download | htmx-d1288d202aecbe46417e6978615e21ba3c74c8cf.tar.gz htmx-d1288d202aecbe46417e6978615e21ba3c74c8cf.zip |
Remove old tests from the website (#1733)
The website used to host every past test suite, copied into the www
directory. We no longer need that on the website (and it makes the
codebase impossible to search) so I removed all the old tests and the
new tests are hosted simply at /test.
I also replaced the www.js script with a simpler www.sh one (since we no
longer need to do anything besides copying, really), which allowed me to
remove a node dependency that was only used in that script.
Diffstat (limited to 'www/static/test/ext/json-enc.js')
-rw-r--r-- | www/static/test/ext/json-enc.js | 143 |
1 files changed, 143 insertions, 0 deletions
diff --git a/www/static/test/ext/json-enc.js b/www/static/test/ext/json-enc.js new file mode 100644 index 00000000..88ba0b65 --- /dev/null +++ b/www/static/test/ext/json-enc.js @@ -0,0 +1,143 @@ +describe("json-enc extension", function() { + beforeEach(function () { + this.server = makeServer(); + clearWorkArea(); + }); + afterEach(function () { + this.server.restore(); + clearWorkArea(); + }); + + it('handles basic get properly', function () { + var jsonResponseBody = JSON.stringify({}); + this.server.respondWith("GET", "/test", jsonResponseBody); + var div = make('<div hx-get="/test" hx-ext="json-enc">click me</div>'); + div.click(); + this.server.respond(); + this.server.lastRequest.response.should.equal("{}"); + }) + + it('handles basic post properly', function () { + var jsonResponseBody = JSON.stringify({}); + this.server.respondWith("POST", "/test", jsonResponseBody); + var div = make("<div hx-post='/test' hx-ext='json-enc'>click me</div>"); + div.click(); + this.server.respond(); + this.server.lastRequest.response.should.equal("{}"); + }) + + it('handles basic put properly', function () { + var jsonResponseBody = JSON.stringify({}); + this.server.respondWith("PUT", "/test", jsonResponseBody); + var div = make('<div hx-put="/test" hx-ext="json-enc">click me</div>'); + div.click(); + this.server.respond(); + this.server.lastRequest.response.should.equal("{}"); + }) + + it('handles basic patch properly', function () { + var jsonResponseBody = JSON.stringify({}); + this.server.respondWith("PATCH", "/test", jsonResponseBody); + var div = make('<div hx-patch="/test" hx-ext="json-enc">click me</div>'); + div.click(); + this.server.respond(); + this.server.lastRequest.response.should.equal("{}"); + }) + + it('handles basic delete properly', function () { + var jsonResponseBody = JSON.stringify({}); + this.server.respondWith("DELETE", "/test", jsonResponseBody); + var div = make('<div hx-delete="/test" hx-ext="json-enc">click me</div>'); + div.click(); + this.server.respond(); + this.server.lastRequest.response.should.equal("{}"); + }) + + it('handles post with form parameters', function () { + + this.server.respondWith("POST", "/test", function (xhr) { + var values = JSON.parse(xhr.requestBody); + values.should.have.keys("username","password"); + values["username"].should.be.equal("joe"); + values["password"].should.be.equal("123456"); + var ans = { "passwordok": values["password"] == "123456"}; + xhr.respond(200, {}, JSON.stringify(ans)); + }); + + var html = make('<form hx-post="/test" hx-ext="json-enc" > ' + + '<input type="text" name="username" value="joe"> ' + + '<input type="password" name="password" value="123456"> ' + + '<button id="btnSubmit">Submit</button> '); + + byId("btnSubmit").click(); + this.server.respond(); + this.server.lastRequest.response.should.equal('{"passwordok":true}'); + }) + + it('handles put with form parameters', function () { + this.server.respondWith("PUT", "/test", function (xhr) { + var values = JSON.parse(xhr.requestBody); + values.should.have.keys("username","password"); + values["username"].should.be.equal("joe"); + values["password"].should.be.equal("123456"); + var ans = { "passwordok": values["password"] == "123456"}; + xhr.respond(200, {}, JSON.stringify(ans)); + }); + + var html = make('<form hx-put="/test" hx-ext="json-enc" > ' + + '<input type="text" name="username" value="joe"> ' + + '<input type="password" name="password" value="123456"> ' + + '<button id="btnSubmit">Submit</button> '); + + byId("btnSubmit").click(); + this.server.respond(); + this.server.lastRequest.response.should.equal('{"passwordok":true}'); + }) + + + it('handles patch with form parameters', function () { + + this.server.respondWith("PATCH", "/test", function (xhr) { + var values = JSON.parse(xhr.requestBody); + values.should.have.keys("username","password"); + values["username"].should.be.equal("joe"); + values["password"].should.be.equal("123456"); + var ans = { "passwordok": values["password"] == "123456"}; + xhr.respond(200, {}, JSON.stringify(ans)); + }); + + var html = make('<form hx-patch="/test" hx-ext="json-enc" > ' + + '<input type="text" name="username" value="joe"> ' + + '<input type="password" name="password" value="123456"> ' + + '<button id="btnSubmit">Submit</button> '); + + byId("btnSubmit").click(); + this.server.respond(); + this.server.lastRequest.response.should.equal('{"passwordok":true}'); + }) + + it('handles delete with form parameters', function () { + + this.server.respondWith("DELETE", "/test", function (xhr) { + var values = JSON.parse(xhr.requestBody); + values.should.have.keys("username","password"); + values["username"].should.be.equal("joe"); + values["password"].should.be.equal("123456"); + var ans = { "passwordok": values["password"] == "123456"}; + xhr.respond(200, {}, JSON.stringify(ans)); + }); + + var html = make('<form hx-delete="/test" hx-ext="json-enc" > ' + + '<input type="text" name="username" value="joe"> ' + + '<input type="password" name="password" value="123456"> ' + + '<button id="btnSubmit">Submit</button> '); + + byId("btnSubmit").click(); + this.server.respond(); + this.server.lastRequest.response.should.equal('{"passwordok":true}'); + }) + + + +}); + |