Skip to content
Snippets Groups Projects
Commit c53e1837 authored by Tom Robinson's avatar Tom Robinson
Browse files

Revert some integration test changes

parent d561c955
No related branches found
No related tags found
No related merge requests found
......@@ -98,15 +98,11 @@ export function useSharedNormalLogin() {
id: process.env.TEST_FIXTURE_SHARED_NORMAL_LOGIN_SESSION_ID,
};
}
export const forBothAdminsAndNormalUsers = tests => {
describe("for admins", () => {
beforeEach(useSharedAdminLogin);
tests();
});
describe("for normal users", () => {
beforeEach(useSharedNormalLogin);
tests();
});
export const forBothAdminsAndNormalUsers = async tests => {
useSharedAdminLogin();
await tests();
useSharedNormalLogin();
await tests();
};
export function logout() {
......@@ -581,24 +577,17 @@ export const eventually = async (assertion, timeout = 5000, period = 250) => {
// })
// afterAll(cleanup);
//
export const cleanup = async () => {
export const cleanup = () => {
useSharedAdminLogin();
try {
await Promise.all(
cleanup.actions.splice(0, cleanup.actions.length).map(action => action()),
);
} catch (e) {
console.warn("CLEANUP FAILED", e);
throw e;
}
Promise.all(
cleanup.actions.splice(0, cleanup.actions.length).map(action => action()),
);
};
cleanup.actions = [];
cleanup.fn = action => cleanup.actions.push(action);
cleanup.metric = metric => cleanup.fn(() => deleteMetric(metric));
cleanup.segment = segment => cleanup.fn(() => deleteSegment(segment));
cleanup.question = question => cleanup.fn(() => deleteQuestion(question));
cleanup.collection = collection =>
cleanup.fn(() => deleteCollection(collection));
export const deleteQuestion = question =>
CardApi.delete({ cardId: getId(question) });
......@@ -606,8 +595,6 @@ export const deleteSegment = segment =>
SegmentApi.delete({ segmentId: getId(segment), revision_message: "Please" });
export const deleteMetric = metric =>
MetricApi.delete({ metricId: getId(metric), revision_message: "Please" });
export const deleteCollection = collection =>
CollectionsApi.update({ id: getId(collection), archived: true });
const getId = o =>
typeof o === "object" && o != null
......
......@@ -5,14 +5,19 @@ import {
forBothAdminsAndNormalUsers,
useSharedAdminLogin,
useSharedNormalLogin,
cleanup,
} from "__support__/integrated_tests";
import { click, clickButton } from "__support__/enzyme_utils";
import { fetchTableMetadata } from "metabase/redux/metadata";
import { mount } from "enzyme";
import { setIn } from "icepick";
import { AlertApi, PulseApi, UserApi } from "metabase/services";
import {
AlertApi,
CardApi,
PulseApi,
UserApi,
CollectionsApi,
} from "metabase/services";
import Question from "metabase-lib/lib/Question";
import * as Urls from "metabase/lib/urls";
import { INITIALIZE_QB, QUERY_COMPLETED } from "metabase/query_builder/actions";
......@@ -83,6 +88,7 @@ const initQbWithAlertMenuItemClicked = async (
};
describe("Alerts", () => {
let collection = null;
let rawDataQuestion = null;
let timeSeriesQuestion = null;
let timeSeriesWithGoalQuestion = null;
......@@ -95,7 +101,7 @@ describe("Alerts", () => {
const store = await createTestStore();
// create a collection which all users have write permissions in
const collection = await createAllUsersWritableCollection();
collection = await createAllUsersWritableCollection();
// table metadata is needed for `Question.alertType()` calls
await store.dispatch(fetchTableMetadata(1));
......@@ -109,7 +115,6 @@ describe("Alerts", () => {
.setDisplayName("Just raw, untamed data")
.setCollectionId(collection.id),
);
cleanup.question(rawDataQuestion);
timeSeriesQuestion = await createSavedQuestion(
Question.create({ databaseId: 1, tableId: 1, metadata })
......@@ -125,7 +130,6 @@ describe("Alerts", () => {
.setDisplayName("Time series line")
.setCollectionId(collection.id),
);
cleanup.question(timeSeriesQuestion);
timeSeriesWithGoalQuestion = await createSavedQuestion(
Question.create({ databaseId: 1, tableId: 1, metadata })
......@@ -143,7 +147,6 @@ describe("Alerts", () => {
.setDisplayName("Time series line with goal")
.setCollectionId(collection.id),
);
cleanup.question(timeSeriesWithGoalQuestion);
timeMultiSeriesWithGoalQuestion = await createSavedQuestion(
Question.create({ databaseId: 1, tableId: 1, metadata })
......@@ -162,7 +165,6 @@ describe("Alerts", () => {
.setDisplayName("Time multiseries line with goal")
.setCollectionId(collection.id),
);
cleanup.question(timeMultiSeriesWithGoalQuestion);
progressBarQuestion = await createSavedQuestion(
Question.create({ databaseId: 1, tableId: 1, metadata })
......@@ -174,16 +176,20 @@ describe("Alerts", () => {
.setDisplayName("Progress bar question")
.setCollectionId(collection.id),
);
cleanup.question(progressBarQuestion);
cleanup.collection(collection);
});
afterAll(cleanup);
afterAll(async () => {
await CardApi.delete({ cardId: rawDataQuestion.id() });
await CardApi.delete({ cardId: timeSeriesQuestion.id() });
await CardApi.delete({ cardId: timeSeriesWithGoalQuestion.id() });
await CardApi.delete({ cardId: timeMultiSeriesWithGoalQuestion.id() });
await CardApi.delete({ cardId: progressBarQuestion.id() });
await CollectionsApi.update({ id: collection.id, archived: true });
});
describe("missing email/slack credentials", () => {
forBothAdminsAndNormalUsers(() => {
it("should prompt you to add email/slack credentials", async () => {
it("should prompt you to add email/slack credentials", async () => {
await forBothAdminsAndNormalUsers(async () => {
MetabaseCookies.getHasSeenAlertSplash = () => false;
const store = await createTestStore();
......
......@@ -86,8 +86,8 @@ describe("new question flow", async () => {
expect(store.getPath()).toBe("/question/new");
});
forBothAdminsAndNormalUsers(() => {
it("renders all options for both admins and normal users if metrics & segments exist", async () => {
it("renders all options for both admins and normal users if metrics & segments exist", async () => {
await forBothAdminsAndNormalUsers(async () => {
const store = await createTestStore();
store.pushPath(Urls.newQuestion());
......@@ -181,8 +181,8 @@ describe("new question flow", async () => {
);
});
forBothAdminsAndNormalUsers(() => {
it("shows an empty state if there are no databases", async () => {
it("shows an empty state if there are no databases", async () => {
await forBothAdminsAndNormalUsers(async () => {
await withApiMocks([[Databases.api, "list", () => []]], async () => {
const store = await createTestStore();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment