summaryrefslogtreecommitdiffstats
path: root/dom/workers/test/marionette/service_worker_utils.py
blob: b29789b6f03f71a56c20af04527833124799d0ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

import os

from marionette_driver import Wait
from marionette_harness import MarionetteTestCase


class MarionetteServiceWorkerTestCase(MarionetteTestCase):
    def install_service_worker(self, path):
        install_url = self.marionette.absolute_url(path)
        self.marionette.navigate(install_url)
        Wait(self.marionette).until(
            lambda _: self.is_service_worker_registered,
            message="Service worker not successfully installed",
        )

        # Wait for the registered service worker to be stored in the Firefox
        # profile before restarting the instance to prevent intermittent
        # failures (Bug 1665184).
        Wait(self.marionette, timeout=10).until(
            lambda _: self.profile_serviceworker_txt_exists,
            message="Service worker not stored in profile",
        )

        # self.marionette.restart(in_app=True) will restore service workers if
        # we don't navigate away before restarting.
        self.marionette.navigate("about:blank")

    # Using @property helps avoid the case where missing parens at the call site
    # yields an unvarying 'true' value.
    @property
    def profile_serviceworker_txt_exists(self):
        return "serviceworker.txt" in os.listdir(self.marionette.profile_path)

    @property
    def is_service_worker_registered(self):
        with self.marionette.using_context("chrome"):
            return self.marionette.execute_script(
                """
                let swm = Cc["@mozilla.org/serviceworkers/manager;1"].getService(
                    Ci.nsIServiceWorkerManager
                );
                let ssm = Services.scriptSecurityManager;

                let principal = ssm.createContentPrincipalFromOrigin(arguments[0]);

                let serviceWorkers = swm.getAllRegistrations();
                for (let i = 0; i < serviceWorkers.length; i++) {
                    let sw = serviceWorkers.queryElementAt(
                        i,
                        Ci.nsIServiceWorkerRegistrationInfo
                    );
                    if (sw.principal.origin == principal.origin) {
                        return true;
                    }
                }
                return false;
            """,
                script_args=(self.marionette.absolute_url(""),),
            )