diff --git a/e2e/support/cypress_sample_instance_data.js b/e2e/support/cypress_sample_instance_data.js index 3e30449b51fd4390470ad2dd20057c34c65108b0..3498dfdc8c789c0d557ee43c2afe2871ae394c9a 100644 --- a/e2e/support/cypress_sample_instance_data.js +++ b/e2e/support/cypress_sample_instance_data.js @@ -48,6 +48,11 @@ export const NO_DATA_PERSONAL_COLLECTION_ID = _.findWhere( { name: "No Data Tableton's Personal Collection" }, ).id; +export const NO_COLLECTION_PERSONAL_COLLECTION_ID = _.findWhere( + SAMPLE_INSTANCE_DATA.collections, + { name: "No Collection Tableton's Personal Collection" }, +).id; + export const FIRST_COLLECTION_ID = _.findWhere( SAMPLE_INSTANCE_DATA.collections, { name: "First collection" }, diff --git a/e2e/test/scenarios/question-reproductions/reproductions-3.cy.spec.js b/e2e/test/scenarios/question-reproductions/reproductions-3.cy.spec.js index 963492219a5f647d41ea66a5ae30b8dc5586b1fe..66fc8d85f1e81ddf0c63ef3dbf3adf565e9003c1 100644 --- a/e2e/test/scenarios/question-reproductions/reproductions-3.cy.spec.js +++ b/e2e/test/scenarios/question-reproductions/reproductions-3.cy.spec.js @@ -1,5 +1,6 @@ import { WRITABLE_DB_ID, SAMPLE_DB_ID } from "e2e/support/cypress_data"; import { SAMPLE_DATABASE } from "e2e/support/cypress_sample_database"; +import { NO_COLLECTION_PERSONAL_COLLECTION_ID } from "e2e/support/cypress_sample_instance_data"; import { restore, visualize, @@ -27,6 +28,8 @@ import { createQuestion, saveQuestion, echartsContainer, + newButton, + appBar, } from "e2e/support/helpers"; const { ORDERS, ORDERS_ID, PRODUCTS } = SAMPLE_DATABASE; @@ -684,3 +687,34 @@ describe("issue 10493", () => { }); }); }); + +describe("issue 44071", () => { + const questionDetails = { + name: "Test", + query: { "source-table": ORDERS_ID }, + collection_id: NO_COLLECTION_PERSONAL_COLLECTION_ID, + }; + + beforeEach(() => { + restore(); + cy.signIn("nocollection"); + createQuestion(questionDetails); + }); + + it("should be able to save questions based on another questions without collection access (metabase#44071)", () => { + cy.visit("/"); + newButton("Question").click(); + entityPickerModal().within(() => { + entityPickerModalTab("Saved questions").click(); + cy.findByText(/Personal Collection/).click(); + cy.findByText(questionDetails.name).click(); + }); + getNotebookStep("data") + .findByText(questionDetails.name) + .should("be.visible"); + saveQuestion(); + appBar() + .findByText(/Personal Collection/) + .should("be.visible"); + }); +});