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
|
#!/usr/bin/python
import base64
from gaol_conf import *
from gaol_lib import *
def test_get_entry(url, idx):
print "Testing to fetch an entry..."
entry = get_entries(url,idx,idx)["entries"][0]
print "Received: " + extract_original_entry(entry)[0]
def test_submission(url, data):
print "\nTesting to submitt a sample text..."
blob = make_blob(data)
res = add_blob(url,blob)
print res
def test_consistency_proof(url, idx1, idx2):
print "\nTesing a consistency proof"
res = get_consistency_proof(url, idx1, idx2)
print res
if __name__ == '__main__':
url = CTLOGS[0]["url"]
test_get_entry(url,5)
test_get_entry(url,6)
test_get_entry(url,7)
# test_get_entry(url,4)
# test_get_entry(url,5)
# test_get_entry(url,6)
# test_submission(url, "Progress (n.): The process through which the Internet has evolved from smart people in front of dumb terminals to dumb people in front of smart terminals.")
# test_consistency_proof(url, 2, 3)
|