-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtc_passkit.rb
42 lines (40 loc) · 1.04 KB
/
tc_passkit.rb
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
require 'json'
require 'pp'
require 'test/unit'
require './passkit.rb'
require './ts_ios7.rb'
$VERBOSE = true
class TestPassKit < Test::Unit::TestCase
def setup
h = JSON.parse IO.read "#{ENV['HOME']}/.passkit.json"
@pk = PassKit.new(h['key'], h['secret'])
end
def test_authenticate
h = JSON.parse @pk.authenticate
assert h['success']
assert h.has_key?('username')
end
def test_template_list
h = JSON.parse @pk.template_list
assert h['success']
assert h.has_key?('templates')
end
def test_template_fieldnames
templates = JSON.parse @pk.template_list
templates['templates'].each do |t|
h = JSON.parse @pk.template_fieldnames t
assert h['success']
end
end
def test_template_passes
templates = JSON.parse @pk.template_list
templates['templates'].each do |t|
h = JSON.parse @pk.template_passes t
assert h['success']
end
end
def test_template_update
j = JSON.parse @pk.template_update('test', {'textItem' => 'New Defaults'})
assert j['success']
end
end