Explorar o código

quick manual tests

Alexander Belanger %!s(int64=5) %!d(string=hai) anos
pai
achega
064510606c
Modificáronse 1 ficheiros con 12 adicións e 0 borrados
  1. 12 0
      INT_TEST.md

+ 12 - 0
INT_TEST.md

@@ -0,0 +1,12 @@
+Just storing the command-line "integration tests" I've done, which we can use later:
+
+```sh
+# should fail on form decoding
+curl -X POST localhost:8080/api/users 
+
+# should fail on email validation
+curl -d "{\"email\":\"hello\",\"password\":\"hello\"}" -H 'Content-Type: application/json' -X POST localhost:8080/api/users
+
+# should pass (without authentication)
+curl -d "{\"email\":\"belanger@getporter.dev\",\"password\":\"hello\"}" -H 'Content-Type: application/json' -X POST localhost:8080/api/users
+```