mirror of
https://github.com/status-im/universal-links-handler.git
synced 2025-02-24 08:38:18 +00:00
26 lines
486 B
Bash
26 lines
486 B
Bash
#!/bin/bash
|
|
source tests/shakedown.sh
|
|
|
|
shakedown GET /.well-known/assetlinks.json
|
|
status 200
|
|
content_type 'application/json'
|
|
contains 'sha256_cert_fingerprints'
|
|
|
|
shakedown GET /.well-known/apple-app-site-association
|
|
status 200
|
|
content_type 'application/json'
|
|
contains 'im.status.ethereum'
|
|
|
|
shakedown GET /chat/public/abc
|
|
status 200
|
|
|
|
shakedown GET /user/blah
|
|
status 200
|
|
|
|
shakedown GET /browse/www.test.com
|
|
status 200
|
|
|
|
shakedown GET /health
|
|
status 200
|
|
contains 'OK'
|