-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_server.sh
executable file
·51 lines (24 loc) · 1.13 KB
/
test_server.sh
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
#!/bin/bash
# git clone the repo
# cd to the cloned repo directory
# Run the user’s installation steps which will install any necessary dependencies required for the server to run, with sudo permission
chmod +x install.sh
sudo ./install.sh
# 1. Run the user’s server execution steps which will bring up the server
# 2. We’ll be running your server_run.sh as a background process (using &) so that we can run the next set of commands
chmod +x server_run.sh
./server_run.sh &
# 3. Add a sleep timer to sleep.sh depending upon how long you want to sleep so that the server is ready.
chmod +x sleep.sh
./sleep.sh
# Execute the GET /memes endpoint using curl to ensure your DB is in a clean slate
# Should return an empty array.
curl --location --request GET 'https://xmeme-sg.herokuapp.com/memes'
# Execute the POST /memes endpoint using curl
curl --location --request POST 'https://xmeme-sg.herokuapp.com/memes' -H 'Content-Type: application/json' -d '{
"name": "xyz",
"url": "abc.com",
"caption": "This is a meme"
}'
# Execute the GET /memes endpoint using curl
curl --location --request GET 'https://xmeme-sg.herokuapp.com/memes'