Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuiz Eduardo de Christo <dudu.christo@gmail.com>2017-08-03 08:12:31 +0300
committerMatthieu Aubry <mattab@users.noreply.github.com>2017-08-03 08:12:31 +0300
commit287320647e09592d02635d19e3b173c8f468ee1f (patch)
treee6375d91e87cb3529cbe674f082344c1d2890e30 /tests/javascript/index.php
parent010a5d1e884efafcd67504d7fe1d2c43a06852f3 (diff)
Fix #11410: Optional secure tracker cookie (#11891)
Diffstat (limited to 'tests/javascript/index.php')
-rw-r--r--tests/javascript/index.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/javascript/index.php b/tests/javascript/index.php
index 2205b26a0b..389f8ff4df 100644
--- a/tests/javascript/index.php
+++ b/tests/javascript/index.php
@@ -2979,6 +2979,15 @@ function PiwikTest() {
equal( tracker.hook.test._getCookie( cookieName ), expectedValue, 'getCookie(), setCookie()' );
});
+ test("Tracker setSecureCookie(), isSecureCookie()", function() {
+ expect(1);
+
+ var tracker = Piwik.getTracker();
+
+ tracker.hook.test._setSecureCookie(1);
+ equal( tracker.hook.test._isSecureCookie(), 1);
+ });
+
test("Tracker getCookieName() contains website ID", function() {
expect(4);