From 01e43b4b78c718784d04962af5192ed6dca53535 Mon Sep 17 00:00:00 2001 From: diosmosis <benaka@piwik.pro> Date: Sun, 12 Jul 2015 16:54:11 -0700 Subject: [PATCH] Refs #8330, make sure this fix & #8321 bug are covered by UI tests. --- tests/UI/specs/BarGraph_spec.js | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/tests/UI/specs/BarGraph_spec.js b/tests/UI/specs/BarGraph_spec.js index 0acdd15662..29bfbe73b2 100644 --- a/tests/UI/specs/BarGraph_spec.js +++ b/tests/UI/specs/BarGraph_spec.js @@ -10,8 +10,16 @@ describe("BarGraph", function () { this.timeout(0); - var url = "?module=Widgetize&action=iframe&moduleToWidgetize=Referrers&idSite=1&period=year&date=2012-08-09&" - + "actionToWidgetize=getKeywords&viewDataTable=graphVerticalBar&isFooterExpandedInDashboard=1"; + var tokenAuth = "9ad1de7f8b329ab919d854c556f860c1", // md5('superUserLogin' . md5('superUserPass')) + url = "?module=Widgetize&action=iframe&moduleToWidgetize=Referrers&idSite=1&period=year&date=2012-08-09&" + + "actionToWidgetize=getKeywords&viewDataTable=graphVerticalBar&isFooterExpandedInDashboard=1&" + + "token_auth=" + tokenAuth; + + before(function () { + // use real auth + token auth to test that auth works when widgetizing reports in an iframe + testEnvironment.testUseMockAuth = 0; + testEnvironment.save(); + }); it("should load correctly", function (done) { expect.screenshot("load").to.be.capture(function (page) { -- GitLab