summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/managed
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
commit6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch)
treea68f146d7fa01f0134297619fbe7e33db084e0aa /testing/web-platform/tests/managed
parentInitial commit. (diff)
downloadthunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz
thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/managed')
-rw-r--r--testing/web-platform/tests/managed/META.yml1
-rw-r--r--testing/web-platform/tests/managed/managed-config-error.https.window.js14
-rw-r--r--testing/web-platform/tests/managed/managed-config-success.https.window.js56
-rw-r--r--testing/web-platform/tests/managed/resources/managed-configuration-helper.js51
4 files changed, 122 insertions, 0 deletions
diff --git a/testing/web-platform/tests/managed/META.yml b/testing/web-platform/tests/managed/META.yml
new file mode 100644
index 0000000000..2971ec82a9
--- /dev/null
+++ b/testing/web-platform/tests/managed/META.yml
@@ -0,0 +1 @@
+spec: https://wicg.github.io/WebApiDevice/managed_config/
diff --git a/testing/web-platform/tests/managed/managed-config-error.https.window.js b/testing/web-platform/tests/managed/managed-config-error.https.window.js
new file mode 100644
index 0000000000..ab58fba5df
--- /dev/null
+++ b/testing/web-platform/tests/managed/managed-config-error.https.window.js
@@ -0,0 +1,14 @@
+promise_test(t => {
+ return promise_rejects_js(
+ t, TypeError, navigator.managed.getManagedConfiguration(-1));
+}, 'Number instead of keys');
+
+promise_test(t => {
+ return promise_rejects_js(
+ t, TypeError, navigator.managed.getManagedConfiguration());
+}, 'Empty key list');
+
+promise_test(t => {
+ return promise_rejects_js(
+ t, TypeError, navigator.managed.getManagedConfiguration({'a': 2}));
+}, 'Dictionary instead of list');
diff --git a/testing/web-platform/tests/managed/managed-config-success.https.window.js b/testing/web-platform/tests/managed/managed-config-success.https.window.js
new file mode 100644
index 0000000000..ef9ad81a15
--- /dev/null
+++ b/testing/web-platform/tests/managed/managed-config-success.https.window.js
@@ -0,0 +1,56 @@
+// META: script=/resources/test-only-api.js
+// META: script=resources/managed-configuration-helper.js
+
+'use strict'
+
+managed_config_test(async (test, managedConfigTest) => {
+ promise_rejects_dom(
+ test, 'NotAllowedError',
+ navigator.managed.getManagedConfiguration(['a']));
+}, 'App is not managed.');
+
+managed_config_test(async (test, managedConfigTest) => {
+ managedConfigTest.setManagedConfig({a: 2});
+ const result = await navigator.managed.getManagedConfiguration(['a']);
+ assert_equals(Object.keys(result).length, 1);
+ assert_equals(result.a, 2);
+}, 'Configuration is returned');
+
+managed_config_test(async (test, managedConfigTest) => {
+ managedConfigTest.setManagedConfig({a: 2, b: 3, c: 1});
+ const result = await navigator.managed.getManagedConfiguration(['b', 'c']);
+ assert_equals(Object.keys(result).length, 2);
+ assert_equals(result.b, 3);
+ assert_equals(result.c, 1);
+}, 'Selected keys are returned.');
+
+managed_config_test(async (test, managedConfigTest) => {
+ managedConfigTest.setManagedConfig({a: 2, b: 3, c: 1});
+ const result = await navigator.managed.getManagedConfiguration(['b', 'e']);
+ assert_equals(Object.keys(result).length, 1);
+ assert_equals(result.b, 3);
+}, 'Only existing keys are returned.');
+
+managed_config_test(async (test, managedConfigTest) => {
+ managedConfigTest.setManagedConfig({a: 2, b: false, c: {x: 3}});
+ const result =
+ await navigator.managed.getManagedConfiguration(['a', 'b', 'c']);
+ assert_equals(Object.keys(result).length, 3);
+ assert_equals(result.a, 2);
+ assert_equals(result.b, false);
+ assert_equals(Object.keys(result.c).length, 1);
+ assert_equals(result.c.x, 3);
+}, 'Values can be of any type');
+
+managed_config_test(async (test, managedConfigTest) => {
+ const nextObserverAdded = managedConfigTest.nextObserverAdded();
+ const watcher =
+ new EventWatcher(test, navigator.managed, ['managedconfigurationchange']);
+ await nextObserverAdded;
+ const event = watcher.wait_for(['managedconfigurationchange']);
+ managedConfigTest.setManagedConfig({'a': 2});
+ await event;
+ const result = await navigator.managed.getManagedConfiguration(['a']);
+ assert_equals(Object.keys(result).length, 1);
+ assert_equals(result.a, 2);
+}, 'A change in managed configuration is observed.');
diff --git a/testing/web-platform/tests/managed/resources/managed-configuration-helper.js b/testing/web-platform/tests/managed/resources/managed-configuration-helper.js
new file mode 100644
index 0000000000..c3213a4dad
--- /dev/null
+++ b/testing/web-platform/tests/managed/resources/managed-configuration-helper.js
@@ -0,0 +1,51 @@
+'use strict';
+
+// These tests rely on the User Agent providing an implementation of
+// Managed Configuration API
+// (https://wicg.github.io/WebApiDevice/managed_config).
+//
+// In Chromium-based browsers this implementation is provided by a polyfill
+// in order to reduce the amount of test-only code shipped to users. To enable
+// these tests the browser must be run with these options:
+//
+// --enable-blink-features=MojoJS,MojoJSTest
+let fakeManagedConfigurationService = undefined;
+
+async function loadChromiumResources() {
+ await import('/resources/chromium/mock-managed-config.js');
+}
+
+// User Agents must provide their own implementation of `ManagedConfigTest`,
+// which must contain the following this interface:
+// class ManagedConfigTest {
+// /** Replaces the provided managed config with the given one. */
+// /** @param {?Object} config */
+// setManagedConfig(config);
+// /** Asynchronously waits for a new observer to be added */
+// waitTillObserverAdded();
+// }
+
+async function createManagedConfigTest() {
+ if (typeof ManagedConfigTest === 'undefined') {
+ if (isChromiumBased) {
+ await loadChromiumResources();
+ }
+ }
+ assert_implements(ManagedConfigTest, 'ManagedConfigTest is unavailable.');
+
+ if (fakeManagedConfigurationService !== undefined) {
+ await fakeManagedConfigurationService.initialize();
+ return fakeManagedConfigurationService;
+ }
+ let managedConfigTest = new ManagedConfigTest();
+ await managedConfigTest.initialize();
+ fakeManagedConfigurationService = managedConfigTest;
+ return managedConfigTest;
+}
+
+function managed_config_test(func, description) {
+ promise_test(async test => {
+ const managedConfigTest = await createManagedConfigTest();
+ await func(test, managedConfigTest);
+ }, description);
+}