-
Notifications
You must be signed in to change notification settings - Fork 552
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #689 from stripe/ob-file-resource
Handle `file` objects like `file_upload`
- Loading branch information
Showing
8 changed files
with
141 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
# frozen_string_literal: true | ||
|
||
require ::File.expand_path("../../test_helper", __FILE__) | ||
|
||
module Stripe | ||
class FileTest < Test::Unit::TestCase | ||
should "be listable" do | ||
files = Stripe::File.list | ||
assert_requested :get, "#{Stripe.api_base}/v1/files" | ||
assert files.data.is_a?(Array) | ||
assert files.data[0].is_a?(Stripe::File) | ||
end | ||
|
||
should "be retrievable" do | ||
file = Stripe::File.retrieve("file_123") | ||
assert_requested :get, "#{Stripe.api_base}/v1/files/file_123" | ||
assert file.is_a?(Stripe::File) | ||
end | ||
|
||
context ".create" do | ||
setup do | ||
# We don't point to the same host for the API and uploads in | ||
# production, but `stripe-mock` supports both APIs. | ||
Stripe.uploads_base = Stripe.api_base | ||
|
||
# Set `api_base` to `nil` to ensure that these requests are _not_ sent | ||
# to the default API hostname. | ||
Stripe.api_base = nil | ||
end | ||
|
||
should "be creatable with a File" do | ||
file = Stripe::File.create( | ||
purpose: "dispute_evidence", | ||
file: ::File.new(__FILE__) | ||
) | ||
assert_requested :post, "#{Stripe.uploads_base}/v1/files" | ||
assert file.is_a?(Stripe::File) | ||
end | ||
|
||
should "be creatable with a Tempfile" do | ||
tempfile = Tempfile.new("foo") | ||
tempfile.write("Hello world") | ||
tempfile.rewind | ||
|
||
file = Stripe::File.create( | ||
purpose: "dispute_evidence", | ||
file: tempfile | ||
) | ||
assert_requested :post, "#{Stripe.uploads_base}/v1/files" | ||
assert file.is_a?(Stripe::File) | ||
end | ||
|
||
should "be creatable with Faraday::UploadIO" do | ||
file = Stripe::File.create( | ||
purpose: "dispute_evidence", | ||
file: Faraday::UploadIO.new(::File.new(__FILE__), nil) | ||
) | ||
assert_requested :post, "#{Stripe.uploads_base}/v1/files" | ||
assert file.is_a?(Stripe::File) | ||
end | ||
end | ||
|
||
should "be deserializable when `object=file`" do | ||
file = Stripe::Util.convert_to_stripe_object({ object: "file" }, {}) | ||
assert file.is_a?(Stripe::File) | ||
end | ||
|
||
should "be deserializable when `object=file_upload`" do | ||
file = Stripe::Util.convert_to_stripe_object({ object: "file_upload" }, {}) | ||
assert file.is_a?(Stripe::File) | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters