-
Notifications
You must be signed in to change notification settings - Fork 563
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Flexible/Metered Billing API support #634
Conversation
Regarding the failing tests: I think this might be a bug in the newest stripe-mock? Looks like the server is not returning IDs for deleted things. |
@alexander-stripe Thanks! LGTM. Unfortunately, OB noticed this morning that there seems to be a slight problem with the |
Oops. Yep, that's it. |
After updating to the newest stripe mock there still seems to be a problem with the IDs - all deleted IDs are |
@alexander-stripe Yes, @brandur ran into that issue in #635. Looks like another stripe-mock update will be needed. |
Yeah, sorry about the trouble, but you'll have to hold out on this one for a bit longer. I think I know what I can do to fix this, but it requires a somewhat non-trivial feature addition to |
Alright, this ended up taking way too long, but I finally got the test suite running again with this change to I'm waiting for review, but we should have everything going again shortly. |
@alexander-stripe Good news! We finally got |
(Oh, and to avoid conflict problems, it might be best just to remove anything files that you touched here that are unrelated to metered billing.) |
f782a2a
to
bb9dfc8
Compare
Nice! Thanks you :-)
🙈 Will fix... |
@alexander-stripe Ugh. The right thing to do for now is just to pop open |
Ah, I would have disabled then locally, but this works too :) |
Thanks! |
Alright, now ready for final review + merging :) |
lib/stripe/usage_record.rb
Outdated
module Stripe | ||
class UsageRecord < APIResource | ||
def self.create(params = {}, opts = {}) | ||
req_params = params.clone.delete_if { |key, _value| key == :subscription_item } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since this is a brand new function, could we throw an ArgumentError
if subscription_item
is missing when we enter this method?
The trouble is that currently if this parameter is forgotten, it'll fall through and produce a confusing 404 as it interpolations a nil
into the URL below.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 If we want to be consistent with other libraries, we should throw an InvalidRequestError
here. That said, ArgumentError
sounds reasonable too and is probably more idiomatic.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, ArgumentError
probably is more idiomatic. That said though, I can see some value in throwing exceptions that descending from a common Stripe tree, so I could sway either way.
Thanks for weighing in.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changed it to throw an ArgumentError
👍
Thanks Alexander! |
8eee2e5
to
c066c9c
Compare
Released as 3.13.0. |
Implement support for flexible billing options on plans and creating usage records.