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:
authorThomas Steur <thomas.steur@gmail.com>2015-08-28 11:15:57 +0300
committerThomas Steur <thomas.steur@gmail.com>2015-08-31 09:33:27 +0300
commit84a945446e6655c7a15bcd2fc92aa5b1f30713a7 (patch)
tree2d7ffe8440c1210856ff4651e470a8e7caa78675 /tests/javascript
parent96ae06bdeff514e579237776bd148794003af262 (diff)
added method to piwik.js to log all detected content blocks
Diffstat (limited to 'tests/javascript')
-rw-r--r--tests/javascript/index.php100
1 files changed, 98 insertions, 2 deletions
diff --git a/tests/javascript/index.php b/tests/javascript/index.php
index 8c5179f77f..2664cb9239 100644
--- a/tests/javascript/index.php
+++ b/tests/javascript/index.php
@@ -1926,7 +1926,7 @@ function PiwikTest() {
});
test("API methods", function() {
- expect(65);
+ expect(66);
equal( typeof Piwik.addPlugin, 'function', 'addPlugin' );
equal( typeof Piwik.getTracker, 'function', 'getTracker' );
@@ -1997,6 +1997,7 @@ function PiwikTest() {
equal( typeof tracker.trackContentImpressionsWithinNode, 'function', 'trackContentImpressionsWithinNode' );
equal( typeof tracker.trackContentInteraction, 'function', 'trackContentInteraction' );
equal( typeof tracker.trackContentInteractionNode, 'function', 'trackContentInteractionNode' );
+ equal( typeof tracker.logAllContentBlocksOnPage, 'function', 'logAllContentBlocksOnPage' );
// ecommerce
equal( typeof tracker.setEcommerceView, 'function', 'setEcommerceView' );
equal( typeof tracker.addEcommerceItem, 'function', 'addEcommerceItem' );
@@ -3190,7 +3191,7 @@ if ($sqlite) {
});
test("trackingContent", function() {
- expect(81);
+ expect(83);
function assertTrackingRequest(actual, expectedStartsWith, message)
{
@@ -3526,6 +3527,101 @@ if ($sqlite) {
start();
}, 7000);
+ expected =
+ [
+ {
+ "name": "My Ad 7",
+ "piece": "Unknown",
+ "target": "http://img7.example.com"
+ },
+ {
+ "name": "http://www.example.com/path/xyz.jpg",
+ "piece": "http://www.example.com/path/xyz.jpg",
+ "target": "http://img6.example.com"
+ },
+ {
+ "name": "My Ad 5",
+ "piece": "http://img5.example.com/path/xyz.jpg",
+ "target": origin + "/anylink5"
+ },
+ {
+ "name": "My content 4",
+ "piece": "My content 4",
+ "target": "http://img4.example.com"
+ },
+ {
+ "name": toAbsolutePath("img3-en.jpg"),
+ "piece": toAbsoluteUrl("img3-en.jpg"),
+ "target": "http://img3.example.com"
+ },
+ {
+ "name": "img.jpg",
+ "piece": "img.jpg",
+ "target": "http://img2.example.com"
+ },
+ {
+ "name": toAbsolutePath("img1-en.jpg"),
+ "piece": toAbsoluteUrl("img1-en.jpg"),
+ "target": ""
+ },
+ {
+ "name": "/tests/javascript/img1-en.jpg",
+ "piece": toAbsoluteUrl("img1-en.jpg"),
+ "target": ""
+ }];
+
+ var consoleOld = console;
+ var loggedContentBlocks = [];
+ console = {log: function (content){
+ loggedContentBlocks = content;
+ }};
+ tracker.logAllContentBlocksOnPage();
+ console = consoleOld;
+ expected =
+ [
+ {
+ "name": "My Ad 7",
+ "piece": "Unknown",
+ "target": "http://img7.example.com"
+ },
+ {
+ "name": "http://www.example.com/path/xyz.jpg",
+ "piece": "http://www.example.com/path/xyz.jpg",
+ "target": "http://img6.example.com"
+ },
+ {
+ "name": "My Ad 5",
+ "piece": "http://img5.example.com/path/xyz.jpg",
+ "target": origin + "/anylink5"
+ },
+ {
+ "name": "My content 4",
+ "piece": "My content 4",
+ "target": "http://img4.example.com"
+ },
+ {
+ "name": toAbsolutePath("img3-en.jpg"),
+ "piece": toAbsoluteUrl("img3-en.jpg"),
+ "target": "http://img3.example.com"
+ },
+ {
+ "name": "img.jpg",
+ "piece": "img.jpg",
+ "target": "http://img2.example.com"
+ },
+ {
+ "name": toAbsolutePath("img1-en.jpg"),
+ "piece": toAbsoluteUrl("img1-en.jpg"),
+ "target": ""
+ },
+ {
+ "name": "/tests/javascript/img1-en.jpg",
+ "piece": toAbsoluteUrl("img1-en.jpg"),
+ "target": ""
+ }];
+
+ equal(expected.length, loggedContentBlocks.length, 'logAllContentBlocksOnPage should detect correct number of content blocks');
+ equal(JSON.stringify(expected), JSON.stringify(loggedContentBlocks), 'logAllContentBlocksOnPage should log all content blocks');
});
test("trackingContentInteractionInteractive", function() {