forked from puritatemcordis/AuctionBase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
implement.sh
42 lines (41 loc) · 1.08 KB
/
implement.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
#!bin/bash
echo "Loading Database ..."
sleep 1s
sh createDatabase.sh
echo "Database Loaded!"
sleep 1s
clear
echo "Testing search functionality of commandLine.py ..."
sleep 2s
python commandLine.py search ItemID=1043374545
sleep 3s
clear
echo "Testing substring search functionality of commandLine.py ..."
sleep 2s
python commandLine.py search description=paypal
sleep 3s
clear
echo "Testing group search functionality of commandLine.py ..."
sleep 2s
python commandLine.py search category=decorative
sleep 3s
clear
echo "Testing bid functionality of commandLine.py ..."
sleep 2s
python commandLine.py bid itemID=1679480995 userID=007cowboy price=1009
sleep 3s
clear
echo "Testing INVALID bid functionality of commandLine.py ..."
sleep 2s
python commandLine.py bid itemID=1679480995 userID=007cowboy price=1009
sleep 3s
clear
echo "Testing buy functionality of commandLine.py ..."
sleep 2s
python commandLine.py buy itemID=1679386982 userID=1philster
sleep 3s
clear
echo "Testing INVALID buy functionality of commandLine.py ..."
sleep 2s
python commandLine.py buy itemID=1679386982 userID=007cowboy
sleep 3s