diff options
| author | Stephen Blott | 2015-04-25 10:32:30 +0100 | 
|---|---|---|
| committer | Stephen Blott | 2015-04-25 10:32:30 +0100 | 
| commit | 07e65122debea72956cba6332b0f537374e965d3 (patch) | |
| tree | aed331da03230c14ce50b1ecfbe1f5cfeb05131d /tests | |
| parent | e7ae8e0cc5aa5d4a8c7778c4a2f88b53d7cc4111 (diff) | |
| parent | 7b3b3b4b7e9b9b39cf583e857c4f384a4fff7fb1 (diff) | |
| download | vimium-07e65122debea72956cba6332b0f537374e965d3.tar.bz2 | |
Merge pull request #1580 from smblott-github/mrmr1993-exclusion-rules-pushState-and-hash
Update exclusion rules when the URL is changed by history.pushState/popState or its hash changes (v2)
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/dom_tests/chrome.coffee | 2 | ||||
| -rw-r--r-- | tests/dom_tests/dom_tests.coffee | 2 | ||||
| -rw-r--r-- | tests/unit_tests/exclusion_test.coffee | 12 | ||||
| -rw-r--r-- | tests/unit_tests/test_chrome_stubs.coffee | 6 | 
4 files changed, 13 insertions, 9 deletions
| diff --git a/tests/dom_tests/chrome.coffee b/tests/dom_tests/chrome.coffee index 5f276649..4c9bfa52 100644 --- a/tests/dom_tests/chrome.coffee +++ b/tests/dom_tests/chrome.coffee @@ -29,3 +29,5 @@ root.chrome =        set: ->      onChanged:        addListener: -> +  extension: +    inIncognitoContext: false diff --git a/tests/dom_tests/dom_tests.coffee b/tests/dom_tests/dom_tests.coffee index f81982ac..bb09a0a8 100644 --- a/tests/dom_tests/dom_tests.coffee +++ b/tests/dom_tests/dom_tests.coffee @@ -1,6 +1,6 @@  # Install frontend event handlers. -initializeWhenEnabled() +installListeners()  installListener = (element, event, callback) ->    element.addEventListener event, (-> callback.apply(this, arguments)), true diff --git a/tests/unit_tests/exclusion_test.coffee b/tests/unit_tests/exclusion_test.coffee index 287d699d..b3ed7194 100644 --- a/tests/unit_tests/exclusion_test.coffee +++ b/tests/unit_tests/exclusion_test.coffee @@ -21,10 +21,6 @@ extend(global, require "../../background_scripts/exclusions.js")  extend(global, require "../../background_scripts/commands.js")  extend(global, require "../../background_scripts/main.js") -dummyTab = -  tab: -    incognito: false -  # These tests cover only the most basic aspects of excluded URLs and passKeys.  #  context "Excluded URLs and pass keys", @@ -40,22 +36,22 @@ context "Excluded URLs and pass keys",        ])    should "be disabled for excluded sites", -> -    rule = isEnabledForUrl({ url: 'http://mail.google.com/calendar/page' }, dummyTab) +    rule = isEnabledForUrl({ url: 'http://mail.google.com/calendar/page' })      assert.isFalse rule.isEnabledForUrl      assert.isFalse rule.passKeys    should "be disabled for excluded sites, one exclusion", -> -    rule = isEnabledForUrl({ url: 'http://www.bbc.com/calendar/page' }, dummyTab) +    rule = isEnabledForUrl({ url: 'http://www.bbc.com/calendar/page' })      assert.isFalse rule.isEnabledForUrl      assert.isFalse rule.passKeys    should "be enabled, but with pass keys", -> -    rule = isEnabledForUrl({ url: 'https://www.facebook.com/something' }, dummyTab) +    rule = isEnabledForUrl({ url: 'https://www.facebook.com/something' })      assert.isTrue rule.isEnabledForUrl      assert.equal rule.passKeys, 'abcd'    should "be enabled", -> -    rule = isEnabledForUrl({ url: 'http://www.twitter.com/pages' }, dummyTab) +    rule = isEnabledForUrl({ url: 'http://www.twitter.com/pages' })      assert.isTrue rule.isEnabledForUrl      assert.isFalse rule.passKeys diff --git a/tests/unit_tests/test_chrome_stubs.coffee b/tests/unit_tests/test_chrome_stubs.coffee index bc50521a..60f3a890 100644 --- a/tests/unit_tests/test_chrome_stubs.coffee +++ b/tests/unit_tests/test_chrome_stubs.coffee @@ -38,6 +38,12 @@ exports.chrome =        addListener: () -> true      query: () -> true +  webNavigation: +    onHistoryStateUpdated: +      addListener: () -> +    onReferenceFragmentUpdated: +      addListener: () -> +    windows:      onRemoved:        addListener: () -> true | 
