Newer
Older
import { SAMPLE_DATABASE } from "e2e/support/cypress_sample_database";
import {
addOrUpdateDashboardCard,
createNativeQuestion,
filterWidget,
Mahatthana (Kelvin) Nomsawadi
committed
getDashboardCard,
getIframeBody,
modal,
openStaticEmbeddingModal,
popover,
restore,
setTokenFeatures,
toggleFilterWidgetValues,
updateDashboardCards,
visitDashboard,
visitEmbeddedPage,
visitIframe,
visitPublicQuestion,
visitQuestion,
withDatabase,
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
} from "e2e/support/helpers";
const { PRODUCTS, PRODUCTS_ID } = SAMPLE_DATABASE;
describe.skip("issue 15860", () => {
const q1IdFilter = {
name: "Q1 ID",
slug: "q1_id",
id: "fde6db8b",
type: "id",
sectionId: "id",
default: [1],
};
const q1CategoryFilter = {
name: "Q1 Category",
slug: "q1_category",
id: "e8ff3175",
type: "string/=",
sectionId: "string",
filteringParameters: [q1IdFilter.id],
};
const q2IdFilter = {
name: "Q2 ID",
slug: "q2_id",
id: "t3e6hb7b",
type: "id",
sectionId: "id",
default: [3],
};
const q2CategoryFilter = {
name: "Q2 Category",
slug: "q2_category",
id: "ca1n357o",
type: "string/=",
sectionId: "string",
filteringParameters: [q2IdFilter.id],
};
function setDefaultValueForLockedFilter(filter, value) {
cy.findByText("Previewing locked parameters")
.parent()
.within(() => {
cy.findByText(filter).click({ force: true });
});
cy.findByPlaceholderText("Enter an ID").type(`${value}{enter}`);
cy.button("Add filter").click();
}
beforeEach(() => {
restore();
cy.signInAsAdmin();
cy.createQuestionAndDashboard({
questionDetails: {
name: "Q1",
query: { "source-table": PRODUCTS_ID },
},
dashboardDetails: {
embedding_params: {
q1_id: "locked",
q1_category: "enabled",
q2_id: "locked",
q2_category: "enabled",
},
enable_embedding: true,
parameters: [
q1IdFilter,
q1CategoryFilter,
q2IdFilter,
q2CategoryFilter,
],
},
cardDetails: {
size_x: 11,
size_y: 6,
},
}).then(({ body: { card_id: q1, dashboard_id } }) => {
// Create a second question with the same source table
cy.createQuestion({
name: "Q2",
query: { "source-table": PRODUCTS_ID },
}).then(({ body: { id: q2 } }) => {
updateDashboardCards({
dashboard_id,
cards: [
// Add card for second question with parameter mappings
{
card_id: q2,
row: 0,
col: 8,
size_x: 13,
size_y: 6,
parameter_mappings: [
{
parameter_id: q2IdFilter.id,
card_id: q2,
target: ["dimension", ["field", PRODUCTS.ID, null]],
},
{
parameter_id: q2CategoryFilter.id,
card_id: q2,
target: ["dimension", ["field", PRODUCTS.CATEGORY, null]],
},
],
},
// Add parameter mappings to first question's card
{
card_id: q1,
parameter_mappings: [
{
parameter_id: q1IdFilter.id,
card_id: q1,
target: ["dimension", ["field", PRODUCTS.ID, null]],
},
{
parameter_id: q1CategoryFilter.id,
card_id: q1,
target: ["dimension", ["field", PRODUCTS.CATEGORY, null]],
},
],
},
],
});
});
cy.request("PUT", `/api/dashboard/${dashboard_id}`, {
embedding_params: {
q1_id: "locked",
q1_category: "enabled",
q2_id: "locked",
q2_category: "enabled",
},
enable_embedding: true,
});
visitDashboard(dashboard_id);
});
});
it("should work for locked linked filters connected to different cards with the same source table (metabase#15860)", () => {
cy.icon("share").click();
// eslint-disable-next-line no-unscoped-text-selectors -- deprecated usage
cy.findByText("Embed in your application").click();
setDefaultValueForLockedFilter("Q1 ID", 1);
setDefaultValueForLockedFilter("Q2 ID", 3);
visitIframe();
// eslint-disable-next-line no-unscoped-text-selectors -- deprecated usage
cy.findByText("Q1 Category").click();
popover().within(() => {
cy.findByRole("listitem")
.should("have.length", 1)
.and("contain", "Gizmo");
});
// eslint-disable-next-line no-unscoped-text-selectors -- deprecated usage
cy.findByText("Q2 Category").click();
popover().within(() => {
cy.findByRole("listitem")
.should("have.length", 1)
.and("contain", "Doohickey");
});
});
});
describe("issue 20438", () => {
const questionDetails = {
name: "20438",
native: {
query:
"SELECT * FROM PRODUCTS\nWHERE true\n [[AND {{CATEGORY}}]]\n limit 30",
"template-tags": {
CATEGORY: {
id: "24f69111-29f8-135f-9321-1ff94bbb31ad",
name: "CATEGORY",
"display-name": "Category",
type: "dimension",
dimension: ["field", PRODUCTS.CATEGORY, null],
"widget-type": "string/=",
default: null,
},
},
},
};
const filter = {
name: "Text",
slug: "text",
id: "b555d25b",
type: "string/=",
sectionId: "string",
};
const dashboardDetails = {
parameters: [filter],
};
beforeEach(() => {
cy.intercept("GET", "/api/embed/dashboard/**").as("getEmbed");
restore();
cy.signInAsAdmin();
cy.createNativeQuestionAndDashboard({
questionDetails,
dashboardDetails,
}).then(({ body: { id, card_id, dashboard_id } }) => {
// Connect filter to the card
cy.request("PUT", `/api/dashboard/${dashboard_id}`, {
dashcards: [
{
id,
card_id,
row: 0,
col: 0,
size_x: 24,
size_y: 8,
parameter_mappings: [
{
parameter_id: filter.id,
card_id,
target: ["dimension", ["template-tag", "CATEGORY"]],
},
],
},
],
});
// Enable embedding and enable the "Text" filter
cy.request("PUT", `/api/dashboard/${dashboard_id}`, {
enable_embedding: true,
embedding_params: { [filter.slug]: "enabled" },
});
visitDashboard(dashboard_id);
});
});
it("dashboard filter connected to the field filter should work with a single value in embedded dashboards (metabase#20438)", () => {
openStaticEmbeddingModal({ activeTab: "parameters" });
visitIframe();
cy.wait("@getEmbed");
filterWidget().click();
cy.wait("@getEmbed");
popover().contains("Doohickey").click();
cy.wait("@getEmbed");
cy.button("Add filter").click();
cy.wait("@getEmbed");
cy.findAllByTestId("cell-data")
// One of product titles for Doohickey
.should("contain", "Small Marble Shoes")
// One of product titles for Gizmo
.and("not.contain", "Rustic Paper Wallet");
});
});
describe("locked parameters in embedded question (metabase#20634)", () => {
beforeEach(() => {
cy.intercept("PUT", "/api/card/*").as("publishChanges");
restore();
cy.signInAsAdmin();
cy.createNativeQuestion(
{
name: "20634",
native: {
query: "select {{text}}",
"template-tags": {
text: {
id: "abc-123",
name: "text",
"display-name": "Text",
type: "text",
default: null,
},
},
},
},
{ visitQuestion: true },
);
});
it("should let the user lock parameters to specific values", () => {
openStaticEmbeddingModal({ activeTab: "parameters" });
modal().within(() => {
// select the dropdown next to the Text parameter so that we can set the value to "Locked"
cy.findByText("Text")
.parent()
.within(() => {
cy.findByText("Disabled").click();
});
});
// eslint-disable-next-line no-unscoped-text-selectors -- deprecated usage
cy.findByText("Locked").click();
modal().within(() => {
// set a parameter value
cy.findByPlaceholderText("Text").type("foo{enter}");
// publish the embedded question so that we can directly navigate to its url
cy.findByText("Publish").click();
cy.wait("@publishChanges");
});
// directly navigate to the embedded question
visitIframe();
// verify that the Text parameter doesn't show up but that its value is reflected in the dashcard
// eslint-disable-next-line no-unscoped-text-selectors -- deprecated usage
cy.findByText("Text").should("not.exist");
cy.get(".CardVisualization").within(() => {
cy.contains("foo");
});
});
});
describe("issues 20845, 25031", () => {
/**
* @param {string} defaultValue - The default value for the defined filter
* @returns object
*/
function getQuestionDetails(defaultValue = undefined) {
return {
name: "20845",
native: {
"template-tags": {
qty_locked: {
id: "6bd8d7be-bd5b-382c-cfa2-683461891663",
name: "qty_locked",
"display-name": "Qty locked",
type: "number",
required: defaultValue ? true : false,
default: defaultValue,
},
},
query:
"select count(*) from orders where true [[AND quantity={{qty_locked}}]]",
},
};
}
const defaultFilterValues = [undefined, "10"];
defaultFilterValues.forEach(value => {
const conditionalPartOfTestTitle = value
? "and the required filter with the default value"
: "";
const dashboardFilter = {
name: "Equal to",
slug: "equal_to",
id: "c269ebe1",
type: "number/=",
sectionId: "number",
};
const dashboardDetails = {
name: "25031",
parameters: [dashboardFilter],
};
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
beforeEach(() => {
cy.intercept("PUT", "/api/card/*").as("publishChanges");
restore();
cy.signInAsAdmin();
const questionDetails = getQuestionDetails(value);
cy.createNativeQuestionAndDashboard({
questionDetails,
dashboardDetails,
}).then(({ body: { id, dashboard_id, card_id } }) => {
cy.wrap(card_id).as("questionId");
cy.wrap(dashboard_id).as("dashboardId");
visitQuestion(card_id);
// Connect dashbaord filter to the card
cy.request("PUT", `/api/dashboard/${dashboard_id}`, {
dashcards: [
{
card_id,
id,
row: 0,
col: 0,
size_x: 16,
size_y: 10,
parameter_mappings: [
{
parameter_id: dashboardFilter.id,
card_id,
target: ["variable", ["template-tag", "qty_locked"]],
},
],
},
],
});
});
});
it(`QUESTION: locked parameter should work with numeric values ${conditionalPartOfTestTitle} (metabase#20845)`, () => {
cy.get("@questionId").then(questionId => {
cy.request("PUT", `/api/card/${questionId}`, {
enable_embedding: true,
embedding_params: {
qty_locked: "locked",
},
});
// This issue is not possible to reproduce using UI from this point on.
// We have to manually send the payload in order to make sure it works for both strings and integers.
["string", "integer"].forEach(type => {
cy.log(
`Make sure it works with ${type.toUpperCase()} in the payload`,
);
visitEmbeddedPage({
resource: { question: questionId },
params: {
qty_locked: type === "string" ? "15" : 15, // IMPORTANT: integer
},
});
});
cy.findByTestId("column-header").should("contain", "COUNT(*)");
cy.findByTestId("cell-data").should("contain", "5");
});
});
it(`DASHBOARD: locked parameter should work with numeric values ${conditionalPartOfTestTitle} (metabase#25031)`, () => {
cy.get("@dashboardId").then(dashboardId => {
visitDashboard(dashboardId);
cy.request("PUT", `/api/dashboard/${dashboardId}`, {
enable_embedding: true,
embedding_params: {
[dashboardFilter.slug]: "locked",
},
});
// This issue is not possible to reproduce using UI from this point on.
// We have to manually send the payload in order to make sure it works for both strings and integers.
["string", "integer"].forEach(type => {
cy.log(
`Make sure it works with ${type.toUpperCase()} in the payload`,
);
const payload = {
resource: { dashboard: dashboardId },
params: {
[dashboardFilter.slug]: type === "string" ? "15" : 15, // IMPORTANT: integer
},
};
visitEmbeddedPage(payload);
// wait for the results to load
cy.contains(dashboardDetails.name);
cy.get(".CardVisualization")
.should("contain", "COUNT(*)")
.and("contain", "5");
});
});
});
});
});
// TODO:
// - Add tests for embedding previews in both cases
// - Add tests for disabled, editable and locked parameters in both cases
// BONUS: Ideally add tests for email subscriptions with the filter applied
describe("issue 27643", () => {
Mahatthana (Kelvin) Nomsawadi
committed
const PG_DB_ID = 2;
const TEMPLATE_TAG_NAME = "expected_invoice";
const getQuestionDetails = fieldId => {
return {
name: "27643",
database: PG_DB_ID,
native: {
query:
"SELECT * FROM INVOICES [[ where {{ expected_invoice }} ]] limit 1",
"template-tags": {
[TEMPLATE_TAG_NAME]: {
id: "3cfb3686-0d13-48db-ab5b-100481a3a830",
dimension: ["field", fieldId, null],
name: TEMPLATE_TAG_NAME,
"display-name": "Expected Invoice",
type: "dimension",
"widget-type": "string/=",
},
},
},
enable_embedding: true,
embedding_params: {
[TEMPLATE_TAG_NAME]: "enabled",
},
};
};
Mahatthana (Kelvin) Nomsawadi
committed
beforeEach(() => {
// This issue was only reproducible against the Postgres database.
Mahatthana (Kelvin) Nomsawadi
committed
restore("postgres-12");
cy.signInAsAdmin();
withDatabase(PG_DB_ID, ({ INVOICES }) => {
cy.wrap(INVOICES.EXPECTED_INVOICE).as(
"postgresInvoicesExpectedInvoiceId",
);
});
});
describe("should allow a dashboard filter to map to a boolean field filter parameter (metabase#27643)", () => {
beforeEach(() => {
const dashboardParameter = {
id: "2850aeab",
name: "Text filter for boolean field",
slug: "text_filter_for_boolean_field",
type: "string/=",
};
const dashboardDetails = {
name: "Dashboard with card with boolean field filter",
enable_embedding: true,
embedding_params: {
[dashboardParameter.slug]: "enabled",
Mahatthana (Kelvin) Nomsawadi
committed
},
parameters: [dashboardParameter],
Mahatthana (Kelvin) Nomsawadi
committed
};
cy.get("@postgresInvoicesExpectedInvoiceId")
.then(fieldId => {
cy.createNativeQuestionAndDashboard({
questionDetails: getQuestionDetails(fieldId),
dashboardDetails,
Mahatthana (Kelvin) Nomsawadi
committed
});
})
.then(({ body: dashboardCard }) => {
const { card_id, dashboard_id } = dashboardCard;
cy.wrap(dashboard_id).as("dashboardId");
cy.wrap(card_id).as("questionId");
const mapFilterToCard = {
parameter_mappings: [
{
parameter_id: dashboardParameter.id,
card_id,
target: ["dimension", ["template-tag", TEMPLATE_TAG_NAME]],
},
Mahatthana (Kelvin) Nomsawadi
committed
],
};
cy.editDashboardCard(dashboardCard, mapFilterToCard);
Mahatthana (Kelvin) Nomsawadi
committed
});
});
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
it("in static embedding and in public dashboard scenarios (metabase#27643-1)", () => {
cy.log("Test the dashboard");
visitDashboard("@dashboardId");
getDashboardCard().should("contain", "true");
toggleFilterWidgetValues(["false"]);
getDashboardCard().should("contain", "false");
cy.log("Test the embedded dashboard");
cy.get("@dashboardId").then(dashboard => {
visitEmbeddedPage({
resource: { dashboard },
params: {},
});
getDashboardCard().should("contain", "true");
toggleFilterWidgetValues(["false"]);
getDashboardCard().should("contain", "false");
});
cy.log("Test the public dashboard");
cy.get("@dashboardId").then(dashboardId => {
// We were signed out due to the previous visitEmbeddedPage
cy.signInAsAdmin();
visitPublicDashboard(dashboardId);
getDashboardCard().should("contain", "true");
toggleFilterWidgetValues(["false"]);
getDashboardCard().should("contain", "false");
});
});
Mahatthana (Kelvin) Nomsawadi
committed
});
describe("should allow a native question filter to map to a boolean field filter parameter (metabase#27643)", () => {
beforeEach(() => {
cy.get("@postgresInvoicesExpectedInvoiceId").then(fieldId => {
createNativeQuestion(getQuestionDetails(fieldId), {
wrapId: true,
idAlias: "questionId",
});
});
Mahatthana (Kelvin) Nomsawadi
committed
});
it("in static embedding and in public question scenarios (metabase#27643-2)", () => {
cy.log("Test the question");
visitQuestion("@questionId");
cy.findAllByTestId("cell-data").should("contain", "true");
toggleFilterWidgetValues(["false"]);
queryBuilderMain().button("Get Answer").click();
cy.findAllByTestId("cell-data").should("contain", "false");
cy.log("Test the embedded question");
cy.get("@questionId").then(question => {
visitEmbeddedPage({
resource: { question },
params: {},
});
Mahatthana (Kelvin) Nomsawadi
committed
cy.findAllByTestId("cell-data").should("contain", "true");
toggleFilterWidgetValues(["false"]);
cy.findAllByTestId("cell-data").should("contain", "false");
Mahatthana (Kelvin) Nomsawadi
committed
});
cy.log("Test the public question");
cy.get("@questionId").then(questionId => {
// We were signed out due to the previous visitEmbeddedPage
cy.signInAsAdmin();
visitPublicQuestion(questionId);
cy.findAllByTestId("cell-data").should("contain", "true");
toggleFilterWidgetValues(["false"]);
cy.findAllByTestId("cell-data").should("contain", "false");
});
});
Mahatthana (Kelvin) Nomsawadi
committed
});
});
describeEE("issue 30535", () => {
const questionDetails = {
name: "3035",
query: {
"source-table": PRODUCTS_ID,
limit: 10,
},
};
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
beforeEach(() => {
restore();
cy.signInAsAdmin();
setTokenFeatures("all");
cy.sandboxTable({
table_id: PRODUCTS_ID,
attribute_remappings: {
attr_cat: ["dimension", ["field", PRODUCTS.CATEGORY, null]],
},
});
cy.createQuestion(questionDetails).then(({ body: { id } }) => {
cy.request("PUT", `/api/card/${id}`, { enable_embedding: true });
visitQuestion(id);
});
});
it("user session should not apply sandboxing to a signed embedded question (metabase#30535)", () => {
openStaticEmbeddingModal({
activeTab: "parameters",
previewMode: "preview",
acceptTerms: false,
});
cy.document().then(doc => {
const iframe = doc.querySelector("iframe");
cy.signOut();
cy.signInAsSandboxedUser();
cy.visit(iframe.src);
});
cy.findByRole("table").within(() => {
// The sandboxed user has an attribute cat="Widget"
cy.findAllByText("Widget");
// Sandboxing shouldn't affect results so we should see other product categories as well
cy.findAllByText("Gizmo");
});
});
});
describe("dashboard preview", () => {
const questionDetails = {
name: "Products",
query: { "source-table": PRODUCTS_ID },
};
const filter3 = {
name: "Text 2",
slug: "text_2",
id: "b0665b6a",
type: "string/=",
sectionId: "string",
};
const filter2 = {
name: "Text 1",
slug: "text_1",
id: "d4c9f2e5",
type: "string/=",
sectionId: "string",
};
const filter = {
filteringParameters: [filter2.id],
name: "Text",
slug: "text",
id: "d1b69627",
type: "string/=",
sectionId: "string",
};
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
beforeEach(() => {
cy.intercept("GET", "/api/preview_embed/dashboard/**").as(
"previewDashboard",
);
cy.intercept("GET", "/api/preview_embed/dashboard/**/params/**/values").as(
"previewValues",
);
restore();
cy.signInAsAdmin();
});
it("dashboard linked filters values don't work in static embed preview (metabase#37914)", () => {
const dashboardDetails = {
parameters: [filter, filter2, filter3],
enable_embedding: true,
embedding_params: {
[filter.slug]: "enabled",
[filter2.slug]: "enabled",
[filter3.slug]: "enabled",
},
};
cy.createQuestionAndDashboard({
questionDetails,
dashboardDetails,
}).then(({ body: { card_id, dashboard_id } }) => {
addOrUpdateDashboardCard({
dashboard_id,
card_id,
card: {
parameter_mappings: [
{
card_id,
parameter_id: filter.id,
target: [
"dimension",
["field", PRODUCTS.CATEGORY, { "base-type": "type/Text" }],
],
},
{
card_id,
parameter_id: filter2.id,
target: [
"dimension",
["field", PRODUCTS.CATEGORY, { "base-type": "type/Text" }],
],
},
{
card_id,
parameter_id: filter3.id,
target: [
"dimension",
["field", PRODUCTS.CATEGORY, { "base-type": "type/Text" }],
],
},
],
},
});
visitDashboard(dashboard_id);
});
openStaticEmbeddingModal({
activeTab: "parameters",
previewMode: "preview",
});
modal().within(() => {
// Makes it less likely to flake.
cy.wait("@previewDashboard");
getIframeBody().within(() => {
cy.log(
"Set filter 2 value, so filter 1 should be filtered by filter 2",
);
cy.button(filter2.name).click();
cy.wait("@previewValues");
popover().within(() => {
cy.findByText("Gadget").should("be.visible");
cy.findByText("Gizmo").should("be.visible");
cy.findByText("Widget").should("be.visible");
cy.findByText("Doohickey").click();
cy.button("Add filter").click();
});
cy.log("Assert filter 1");
cy.button(filter.name).click();
popover().within(() => {
cy.findByText("Gadget").should("not.exist");
cy.findByText("Gizmo").should("not.exist");
cy.findByText("Widget").should("not.exist");
cy.findByText("Doohickey").should("be.visible");
});
});
});
});
it("dashboard linked filters values in embed preview don't behave like embedding (metabase#41635)", () => {
const dashboardDetails = {
parameters: [filter, filter2, filter3],
enable_embedding: true,
embedding_params: {
[filter.slug]: "enabled",
[filter2.slug]: "locked",
[filter3.slug]: "locked",
},
};
cy.createQuestionAndDashboard({
questionDetails,
dashboardDetails,
}).then(({ body: { card_id, dashboard_id } }) => {
addOrUpdateDashboardCard({
dashboard_id,
card_id,
card: {
parameter_mappings: [
{
card_id,
parameter_id: filter.id,
target: [
"dimension",
["field", PRODUCTS.CATEGORY, { "base-type": "type/Text" }],
],
},
{
card_id,
parameter_id: filter2.id,
target: [
"dimension",
["field", PRODUCTS.CATEGORY, { "base-type": "type/Text" }],
],
},
{
card_id,
parameter_id: filter3.id,
target: [
"dimension",
["field", PRODUCTS.CATEGORY, { "base-type": "type/Text" }],
],
},
],
},
});
visitDashboard(dashboard_id);
});
openStaticEmbeddingModal({
activeTab: "parameters",
previewMode: "preview",
});
// Makes it less likely to flake.
cy.wait("@previewDashboard");
cy.log("Set the first locked parameter values");
modal()
.findByRole("generic", { name: "Previewing locked parameters" })
.findByText("Text 1")
.click();
popover().within(() => {
cy.findByText("Doohickey").click();
cy.button("Add filter").click();
});
cy.log("Set the second locked parameter values");
modal()
.findByRole("generic", { name: "Previewing locked parameters" })
.findByText("Text 2")
.click();
popover().within(() => {
cy.findByText("Doohickey").click();
cy.findByText("Gizmo").click();
cy.findByText("Gadget").click();
cy.button("Add filter").click();
});
getIframeBody().within(() => {
cy.log("Assert filter 1");
cy.button(filter.name).click();
popover().within(() => {
cy.findByText("Gadget").should("not.exist");
cy.findByText("Gizmo").should("not.exist");
cy.findByText("Widget").should("not.exist");
cy.findByText("Doohickey").should("be.visible");
});
});
});
});
describe("issue 40660", () => {
const questionDetails = {
name: "Products",
query: { "source-table": PRODUCTS_ID, limit: 2 },
};
const dashboardDetails = {
name: "long dashboard",
enable_embedding: true,
};
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
beforeEach(() => {
cy.intercept("GET", "/api/preview_embed/dashboard/**").as(
"previewDashboard",
);
restore();
cy.signInAsAdmin();
cy.createQuestionAndDashboard({
questionDetails,
dashboardDetails,
}).then(({ body: { id, card_id, dashboard_id } }) => {
updateDashboardCards({
dashboard_id,
cards: [{ card_id }, { card_id }, { card_id }],
});
visitDashboard(dashboard_id);
});
});
it("static dashboard content shouldn't overflow its container (metabase#40660)", () => {
openStaticEmbeddingModal({
activeTab: "parameters",
previewMode: "preview",
});
getIframeBody().within(() => {
cy.findByTestId("embed-frame").scrollTo("bottom");
cy.findByRole("link", { name: "Powered by Metabase" }).should(
"be.visible",
);
});
});
});
// Skipped since it does not make sense when CSP is disabled
describe.skip("issue 49142", () => {