|
@@ -76,8 +76,6 @@ class SessionTest < Test::Unit::TestCase
|
|
end
|
|
end
|
|
|
|
|
|
test "#temp reset ShopifyAPI::Base.site to original value" do
|
|
test "#temp reset ShopifyAPI::Base.site to original value" do
|
|
-
|
|
|
|
- ShopifyAPI::Session.setup(:api_key => "key", :secret => "secret")
|
|
|
|
session1 = ShopifyAPI::Session.new(domain: 'fakeshop.myshopify.com', token: 'token1', api_version: :no_version)
|
|
session1 = ShopifyAPI::Session.new(domain: 'fakeshop.myshopify.com', token: 'token1', api_version: :no_version)
|
|
ShopifyAPI::Base.activate_session(session1)
|
|
ShopifyAPI::Base.activate_session(session1)
|
|
|
|
|
|
@@ -93,6 +91,62 @@ class SessionTest < Test::Unit::TestCase
|
|
assert_equal(ShopifyAPI::ApiVersion::NoVersion.new, ShopifyAPI::Base.api_version)
|
|
assert_equal(ShopifyAPI::ApiVersion::NoVersion.new, ShopifyAPI::Base.api_version)
|
|
end
|
|
end
|
|
|
|
|
|
|
|
+ test "#with_session activates the session for the duration of the block" do
|
|
|
|
+ session1 = ShopifyAPI::Session.new(domain: 'fakeshop.myshopify.com', token: 'token1', api_version: :no_version)
|
|
|
|
+ ShopifyAPI::Base.activate_session(session1)
|
|
|
|
+
|
|
|
|
+ other_session = ShopifyAPI::Session.new(
|
|
|
|
+ domain: "testshop.myshopify.com",
|
|
|
|
+ token: "any-token",
|
|
|
|
+ api_version: :unstable
|
|
|
|
+ )
|
|
|
|
+
|
|
|
|
+ ShopifyAPI::Session.with_session(other_session) do
|
|
|
|
+ @assigned_site = ShopifyAPI::Base.site
|
|
|
|
+ @assigned_version = ShopifyAPI::Base.api_version
|
|
|
|
+ end
|
|
|
|
+
|
|
|
|
+ assert_equal('https://testshop.myshopify.com', @assigned_site.to_s)
|
|
|
|
+ assert_equal('https://fakeshop.myshopify.com', ShopifyAPI::Base.site.to_s)
|
|
|
|
+
|
|
|
|
+ assert_equal(ShopifyAPI::ApiVersion::Unstable.new, @assigned_version)
|
|
|
|
+ assert_equal(ShopifyAPI::ApiVersion::NoVersion.new, ShopifyAPI::Base.api_version)
|
|
|
|
+ end
|
|
|
|
+
|
|
|
|
+ test "#with_session resets the activated session even if there an exception during the block" do
|
|
|
|
+ session1 = ShopifyAPI::Session.new(domain: 'fakeshop.myshopify.com', token: 'token1', api_version: :no_version)
|
|
|
|
+ ShopifyAPI::Base.activate_session(session1)
|
|
|
|
+
|
|
|
|
+ other_session = ShopifyAPI::Session.new(
|
|
|
|
+ domain: "testshop.myshopify.com",
|
|
|
|
+ token: "any-token",
|
|
|
|
+ api_version: :unstable
|
|
|
|
+ )
|
|
|
|
+
|
|
|
|
+ assert_raises StandardError do
|
|
|
|
+ ShopifyAPI::Session.with_session(other_session) { raise StandardError, "" }
|
|
|
|
+ end
|
|
|
|
+
|
|
|
|
+ assert_equal('https://fakeshop.myshopify.com', ShopifyAPI::Base.site.to_s)
|
|
|
|
+ assert_equal(ShopifyAPI::ApiVersion::NoVersion.new, ShopifyAPI::Base.api_version)
|
|
|
|
+ end
|
|
|
|
+
|
|
|
|
+ test "#with_version will adjust the actvated api version for the duration of the block" do
|
|
|
|
+ session1 = ShopifyAPI::Session.new(domain: 'fakeshop.myshopify.com', token: 'token1', api_version: :no_version)
|
|
|
|
+ ShopifyAPI::Base.activate_session(session1)
|
|
|
|
+
|
|
|
|
+ ShopifyAPI::Session.with_version(:unstable) do
|
|
|
|
+ @assigned_site = ShopifyAPI::Base.site
|
|
|
|
+ @assigned_version = ShopifyAPI::Base.api_version
|
|
|
|
+ end
|
|
|
|
+
|
|
|
|
+ assert_equal('https://fakeshop.myshopify.com', @assigned_site.to_s)
|
|
|
|
+ assert_equal('https://fakeshop.myshopify.com', ShopifyAPI::Base.site.to_s)
|
|
|
|
+
|
|
|
|
+ assert_equal(ShopifyAPI::ApiVersion::Unstable.new, @assigned_version)
|
|
|
|
+ assert_equal(ShopifyAPI::ApiVersion::NoVersion.new, ShopifyAPI::Base.api_version)
|
|
|
|
+ end
|
|
|
|
+
|
|
test "create_permission_url returns correct url with single scope no redirect uri" do
|
|
test "create_permission_url returns correct url with single scope no redirect uri" do
|
|
ShopifyAPI::Session.setup(:api_key => "My_test_key", :secret => "My test secret")
|
|
ShopifyAPI::Session.setup(:api_key => "My_test_key", :secret => "My test secret")
|
|
session = ShopifyAPI::Session.new(
|
|
session = ShopifyAPI::Session.new(
|