forked from Shopify/shopify-api-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontext_test.rb
202 lines (173 loc) · 6.09 KB
/
context_test.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
# typed: true
# frozen_string_literal: true
require_relative "test_helper"
module ShopifyAPITest
class ContextTest < Minitest::Test
def setup
@reader, writer = IO.pipe
ENV["HOST"] = "http://localhost:3000"
ShopifyAPI::Context.setup(
api_key: "key",
api_secret_key: "secret",
api_version: "2023-10",
scope: ["scope1", "scope2"],
is_private: true,
is_embedded: true,
log_level: :off,
logger: Logger.new(writer),
private_shop: "privateshop.myshopify.com",
user_agent_prefix: "user_agent_prefix1",
old_api_secret_key: "old_secret",
api_host: "example.com",
)
end
def test_not_setup
clear_context
refute(ShopifyAPI::Context.setup?)
end
def test_setup
assert(ShopifyAPI::Context.setup?)
assert_equal("key", ShopifyAPI::Context.api_key)
assert_equal("secret", ShopifyAPI::Context.api_secret_key)
assert_equal("2023-10", ShopifyAPI::Context.api_version)
assert_equal("http://localhost:3000", ShopifyAPI::Context.host)
assert_equal(ShopifyAPI::Auth::AuthScopes.new(["scope1", "scope2"]), ShopifyAPI::Context.scope)
assert(ShopifyAPI::Context.private?)
ShopifyAPI::Context.logger.info("test log")
assert_match(/test log/, @reader.gets)
assert_equal("privateshop.myshopify.com", ShopifyAPI::Context.private_shop)
assert_equal("user_agent_prefix1", ShopifyAPI::Context.user_agent_prefix)
assert_equal("old_secret", ShopifyAPI::Context.old_api_secret_key)
assert_equal("http", ShopifyAPI::Context.host_scheme)
assert_equal("localhost", ShopifyAPI::Context.host_name)
assert_equal("example.com", ShopifyAPI::Context.api_host)
ShopifyAPI::Context.setup(
api_key: "key",
api_secret_key: "secret",
api_version: "2023-10",
scope: ["scope1", "scope2"],
is_private: true,
is_embedded: true,
log_level: :off,
private_shop: "privateshop.myshopify.com",
user_agent_prefix: "user_agent_prefix1",
old_api_secret_key: "old_secret",
)
end
def test_active_session_is_thread_safe
session1 = ShopifyAPI::Auth::Session.new(shop: "test-shop2.myshopify.com", access_token: "token1")
session2 = ShopifyAPI::Auth::Session.new(shop: "test-shop2.myshopify.com", access_token: "token2")
session1_set = T.let(false, T::Boolean)
session2_set = T.let(false, T::Boolean)
threads = []
threads << Thread.new do
ShopifyAPI::Context.activate_session(session1)
session1_set = true
sleep(0.1) until session2_set
assert_equal(session1, ShopifyAPI::Context.active_session)
end
threads << Thread.new do
ShopifyAPI::Context.activate_session(session2)
session2_set = true
sleep(0.1) until session1_set
assert_equal(session2, ShopifyAPI::Context.active_session)
end
threads.each(&:join)
end
def test_active_session_defaults_to_nil
clear_context
assert_nil(ShopifyAPI::Context.active_session)
end
def test_deactivate_session
clear_context
session = ShopifyAPI::Auth::Session.new(shop: "test-shop.myshopify.com", access_token: "token")
ShopifyAPI::Context.activate_session(session)
assert_instance_of(ShopifyAPI::Auth::Session, ShopifyAPI::Context.active_session)
ShopifyAPI::Context.deactivate_session
assert_nil(ShopifyAPI::Context.active_session)
end
def test_unsupported_api_version
assert_raises(ShopifyAPI::Errors::UnsupportedVersionError) do
ShopifyAPI::Context.setup(
api_key: "key",
api_secret_key: "secret",
api_version: "unsupported",
host_name: "host",
scope: ["scope1", "scope2"],
is_private: false,
is_embedded: true,
logger: Logger.new($stdout),
)
end
end
def test_with_host_name_and_no_host_env
clear_context
old_host = ENV["HOST"]
ENV["HOST"] = nil
ShopifyAPI::Context.setup(
api_key: "key",
api_secret_key: "secret",
api_version: "2023-10",
host_name: "tunnel-o-security.com",
scope: ["scope1", "scope2"],
is_private: true,
is_embedded: true,
private_shop: "privateshop.myshopify.com",
user_agent_prefix: "user_agent_prefix1",
old_api_secret_key: "old_secret",
log_level: :off,
)
assert_equal("https", ShopifyAPI::Context.host_scheme)
assert_equal("https://tunnel-o-security.com", ShopifyAPI::Context.host)
assert_equal("tunnel-o-security.com", ShopifyAPI::Context.host_name)
ENV["HOST"] = old_host
end
def test_send_a_warning_if_log_level_is_invalid
ShopifyAPI::Context.stubs(:log_level).returns(:warn)
ShopifyAPI::Logger.expects(:warn).with("not_a_level is not a valid log_level. "\
"Valid options are #{::ShopifyAPI::Logger::LOG_LEVELS.keys.join(", ")}")
ShopifyAPI::Context.setup(
api_key: "",
api_secret_key: "",
api_version: "2023-10",
host_name: "",
scope: [],
is_private: false,
is_embedded: true,
logger: ::Logger.new(T.let(StringIO.new, StringIO)),
user_agent_prefix: nil,
old_api_secret_key: nil,
log_level: :not_a_level,
)
end
def test_scope_config_can_be_optional_and_defaults_to_empty
ShopifyAPI::Context.setup(
api_key: "",
api_secret_key: "",
api_version: "2023-10",
host_name: "",
is_private: false,
is_embedded: true,
)
assert_equal(ShopifyAPI::Auth::AuthScopes.new, ShopifyAPI::Context.scope)
end
def teardown
ShopifyAPI::Context.deactivate_session
end
private
def clear_context
ShopifyAPI::Context.setup(
api_key: "",
api_secret_key: "",
api_version: "2023-10",
host_name: "",
scope: [],
is_private: false,
is_embedded: true,
user_agent_prefix: nil,
old_api_secret_key: nil,
log_level: :off,
)
end
end
end