Skip to content
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

[BUU] Fix non-admin saving #12412

Merged

Conversation

dacook
Copy link
Member

@dacook dacook commented Apr 24, 2024

Project code: #7198 Back Office Uplift (Product): Build

What? Why?

The Spree::Admin::BaseController requires a permission defined for each controller action, so I've now added this.
It wasn't covered by the system spec because it only tested as an admin (which automatically has access to everything). I've updated the spec to always use an enterprise user, which is a better test.

But the error message was pretty disruptive and unhelpful (see issue). So in case it happens again, I've added a general error handler to show a message, based on the HTTP code (401 - Unauthorized).
Screenshot 2024-04-23 at 12 58 16 pm

What should we test?

Just a quick validation ideally by Konrad:

  • Log in as an enterprise user that doesn't have the 'admin' role. Save a product change on the new products screen.

This also touches the general Turbo code which I think is used in the checkout process. But I believe this change is sufficiently covered by specs.

Release notes

Changelog Category (reviewers may add a label for the release notes):

  • User facing changes
  • API changes (V0, V1, DFC or Webhook)
  • Technical changes only
  • Feature toggled

The title of the pull request will be included in the release notes.

So that it can be used for more general purposes.
Instead of replacing frame contents with unhelpful text 'Content missing'.
@@ -173,7 +178,7 @@
search_by_category "Category 1"

# expect(page).to have_content "1 product found for your search criteria."
expect(page).to have_select "category_id", selected: "Category 1"
expect(page).to have_select "category_id", selected: "Category 1" # succeeds in CI but not dev.
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmm I forgot to go back and investigate why, but maybe next time..

include WebHelper
include AuthenticationHelper
include FileHelper

let(:producer) { create(:supplier_enterprise) }
Copy link
Member Author

@dacook dacook Apr 24, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In many places the codebase says "supplier". We now prefer the term "producer", which is used in general communication, so I've named the variables as such.
Maybe one day we'll update the codebase to avoid confusion..

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh, I didn't actually know this. "Supplier" is a bit more general. The enterprise may not be producing the product. 🤷

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I recall having a conversation in Slack I think, and that "producer" was the winner.
I agree that "supplier" makes more sense, although arguably the distributor also "supplies" the product, so it could be ambiguous...

I can't find that conversation though, so now I'm not sure! I will seek clarification in #product-circle.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this is the conversation https://openfoodnetwork.slack.com/archives/C01T75H6G0Z/p1679368367236359
Seems we ended up with "supplier" back then 🙂

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks Sigmund, I forgot my own comments! 😅

I'm going to write it on a post-it note on my computer screen..

I forgot to do this in openfoodfoundation#12328 [BUU] Remove Stimulus Reflex from Products screen
@dacook dacook self-assigned this Apr 24, 2024
@dacook dacook force-pushed the buu/fix-non-admin-saving-12403 branch from 9b9e459 to b846d0f Compare April 24, 2024 00:56
@dacook dacook marked this pull request as ready for review April 24, 2024 00:57
} else {
alert(I18n.t("errors.general_error.message"));
}
});
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmm, in Rails we arrange code like this in a folder called initializers. Maybe we could do the same with JS next time.

@dacook

This comment was marked as resolved.

Copy link
Member

@mkllnk mkllnk left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great fix, and testing.

@RachL
Copy link
Contributor

RachL commented Apr 24, 2024

FYI I did test with a non admin role on staging FR and fields like updating images or stock are working ok. Now I see however that updating product unit name for example raises the error "Content is missing". Sorry for that! I've used an admin role for testing those as it required to have several pages of product :(

@filipefurtad0
Copy link
Contributor

I've updated the spec to always use an enterprise user, which is a better test

Fully agree, thanks @dacook . Unfortunately, this is a common practice in our tests, we should consider improving this and making sessions more user specific (instead of always being logged as superadmin).

@filipefurtad0 filipefurtad0 added no-staging-FR A tag which does not trigger deployments, indicating a server is being used pr-staged-fr staging.coopcircuits.fr and removed no-staging-FR A tag which does not trigger deployments, indicating a server is being used labels Apr 25, 2024
@filipefurtad0 filipefurtad0 self-assigned this Apr 25, 2024
@filipefurtad0
Copy link
Contributor

Hey @dacook ,

I've staged master and found that indeed, for some attributes (like SKU or as @RachL menitons, product unit name) we get a 401 error, as described in the issue, while the UI throws this error - this reproduces the issue:

image

After staging the PR, I could not observer the error anymore, nor the 401 error on the console:

image

I've tested updating all fields, including images.

Also, since you mention this touches checkout, I felt it was a good idea to have a smoke test on checking out: looking good!

As I understood from @RachL comment, this was before staging the PR, right? If so, then I think we're good to merge, but I'll await your confirmation.

@RachL
Copy link
Contributor

RachL commented Apr 25, 2024

yes before staging the PR - I was referring to the PR that introduced this.

@filipefurtad0
Copy link
Contributor

Ok! Merging :-)

@filipefurtad0 filipefurtad0 merged commit 4ff8326 into openfoodfoundation:master Apr 25, 2024
54 checks passed
@filipefurtad0 filipefurtad0 removed the pr-staged-fr staging.coopcircuits.fr label Apr 25, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Status: Done
Development

Successfully merging this pull request may close these issues.

[BUU] Can't save changes on staging-AU
5 participants