Created
October 11, 2017 06:53
-
-
Save qoopooh/2bed1c14a97da8168ca0f7b4782d0522 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/sh | |
HOST=$1 | |
DATA="$2" | |
# post $HOST "$DATA" | |
function post { | |
curl -iX POST -H 'Content-Type: application/json' -d "$2" $1 | |
} | |
dummy() { | |
post localhost/game-categories/ '{"name":"2D mobile arcad"}' | |
post localhost/game-categories/ '{"name":"3D RPG"}' | |
post localhost/game-categories/ '{"name":"Virtual reality"}' | |
post localhost/games/ '{"name":"Captain America vs Thor", "game_category":"Virtual reality", "played": "false", "release_date": "2016-06-21T03:02:00.776594Z"}' | |
post localhost/games/ '{"name":"Superman vs Aquaman", "game_category":"3D RPG", "played":false,"release_date":"2016-06-21T03:02"}' | |
post localhost/games/ '{"name":"PvZ Garden Warfare 4", "game_category":"3D RPG", "played": "false", "release_date": "2016-06-21T03:02:00.776594Z"}' | |
post localhost/players/ '{"name":"Kevin","gender":"M"}' | |
post localhost/players/ '{"name":"Brandon","gender":"M"}' | |
post localhost/player-scores/ '{"score":"85125","score_date":"2016-06-22T01:02","game":"PvZ Garden Warfare 4","player":"Brandon"}' | |
post localhost/player-scores/ '{"score":"11200","score_date":"2016-06-22T05:02","game":"PvZ Garden Warfare 4","player":"Kevin"}' | |
post localhost/player-scores/ '{"score":"12333","score_date":"2016-06-22T03:02","game":"Superman vs Aquaman","player":"Kevin"}' | |
} | |
if [ $# -lt 1 ] ; then | |
dummy | |
else | |
post $HOST "$DATA" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment