-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathts_ios7.rb
64 lines (62 loc) · 1.55 KB
/
ts_ios7.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
require 'json'
require 'pp'
require 'test/unit'
require './passkit.rb'
$VERBOSE = true
class TestiOS7 < Test::Unit::TestCase
def setup
h = JSON.parse IO.read "#{ENV['HOME']}/.passkit.json"
@pk = PassKit.new(h['key'], h['secret'])
@data = {
'expirationDate' => '2013-09-17T06:44Z',
'voided' => true,
'groupingIdentifier' => 'PassKit',
'ignoresTimeZone' => true,
'associatedStoreIdentifiers' => 12345678,
'appLaunchURL' => 'http://passkit.com',
'userInfo' => '{"name": "Percy PassKit"}',
'beacons' => [{
'major' => 123456,
'minor' => 654321,
'proximityUUID' => 'I AM A UNIQUE ID',
'relevantText' => 'irrelevant'
}]
}
@j = JSON.parse @pk.pass_update_passid('feKpNoscFpL9', @data)
assert @j['success']
@j = JSON.parse @pk.pass_get_passid('feKpNoscFpL9')
assert @j['success']
end
def test_expirationDate
k = 'expirationDate'
assert_equal(@data[k], @j[k])
end
def test_voided
k = 'voided'
assert_equal(@data[k], @j[k])
end
def test_groupingIdentifier
k = 'groupingIdentifier'
assert_equal(@data[k], @j[k])
end
def test_ignoresTimeZone
k = 'ignoresTimeZone'
assert_equal(@data[k], @j[k])
end
def test_associatedStoreIdentifiers
k = 'associatedStoreIdentifiers'
assert_equal(@data[k], @j[k])
end
def test_appLaunchURL
k = 'appLaunchURL'
assert_equal(@data[k], @j[k])
end
def test_userInfo
k = 'userInfo'
assert_equal(@data[k], @j[k])
end
def test_beacons
k = 'beacons'
assert_equal(@data[k], @j[k])
end
end