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 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189
|
<!doctype html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/common/utils.js"></script>
<script src="/shared-storage/resources/util.js"></script>
<script src="/fenced-frame/resources/utils.js"></script>
<body>
<script>
'use strict';
for (const resolve_to_config of [true, false]) {
promise_test(async () => {
const ancestor_key = token();
let url0 = generateURL("/shared-storage/resources/frame0.html",
[ancestor_key]);
let url1 = generateURL("/shared-storage/resources/frame1.html",
[ancestor_key]);
await addModuleOnce("/shared-storage/resources/simple-module.js");
let select_url_result0 = await sharedStorage.selectURL(
"test-url-selection-operation", [{url: url0}, {url: url1}],
{data: {'mockResult': 0}, resolveToConfig: resolve_to_config,
keepAlive: true});
assert_true(validateSelectURLResult(select_url_result0, resolve_to_config));
attachFencedFrame(select_url_result0, 'opaque-ads');
const result0 = await nextValueFromServer(ancestor_key);
assert_equals(result0, "frame0_loaded");
let select_url_result1 = await sharedStorage.selectURL(
"test-url-selection-operation", [{url: url0}, {url: url1}],
{data: {'mockResult': 1}, resolveToConfig: resolve_to_config,
keepAlive: true});
assert_true(validateSelectURLResult(select_url_result1, resolve_to_config));
attachFencedFrame(select_url_result1, 'opaque-ads');
const result1 = await nextValueFromServer(ancestor_key);
assert_equals(result1, "frame1_loaded");
let select_url_result2 = await sharedStorage.selectURL(
"test-url-selection-operation", [{url: url0}, {url: url1}],
{data: {'mockResult': -1}, resolveToConfig: resolve_to_config,
keepAlive: true});
assert_true(validateSelectURLResult(select_url_result2, resolve_to_config));
attachFencedFrame(select_url_result2, 'opaque-ads');
const result2 = await nextValueFromServer(ancestor_key);
assert_equals(result2, "frame0_loaded");
}, 'selectURL() resolves to ' + (resolve_to_config ? 'config' : 'urn:uuid'));
promise_test(async t => {
try {
await addModuleOnce("/shared-storage/resources/simple-module.js");
await sharedStorage.selectURL(
"test-url-selection-operation",
[{url: "1"}, {url: "2"}, {url: "3"}, {url: "4"}, {url: "5"},
{url: "6"}, {url: "7"}, {url: "8"}, {url: "9"}],
{resolveToConfig: resolve_to_config, keepAlive: true});
} catch (e) {
assert_equals(e.name, 'DataError');
assert_equals(e.message, 'Length of the \"urls\" parameter is not valid.');
return;
}
assert_unreached("did not reject");
}, 'selectURL() with urls array length too big, ' +
'selectURL() resolves to ' + (resolve_to_config ? 'config' : 'urn:uuid'));
promise_test(async t => {
try {
await addModuleOnce("/shared-storage/resources/simple-module.js");
await sharedStorage.selectURL(
"test-url-selection-operation",
[],
{resolveToConfig: resolve_to_config, keepAlive: true});
} catch (e) {
assert_equals(e.name, 'DataError');
assert_equals(e.message, 'Length of the \"urls\" parameter is not valid.');
return;
}
assert_unreached("did not reject");
}, 'selectURL() with empty urls array, ' +
'selectURL() resolves to ' + (resolve_to_config ? 'config' : 'urn:uuid'));
promise_test(async t => {
try {
await addModuleOnce("/shared-storage/resources/simple-module.js");
await sharedStorage.selectURL(
"test-url-selection-operation", [{
reportingMetadata: {
'click': "https://google.com"
}
}],
{resolveToConfig: resolve_to_config, keepAlive: true});
} catch (e) {
assert_equals(e.name, 'TypeError');
assert_equals(true, e.message.startsWith(
'Failed to execute \'selectURL\' on \'SharedStorage\': ' +
'Failed to read the \'url\' property from ' +
'\'SharedStorageUrlWithMetadata\':') &&
e.message.endsWith('Failed to read the \'url\' property from ' +
'\'SharedStorageUrlWithMetadata\': Required member is undefined.'));
return;
}
assert_unreached("did not reject");
}, 'selectURL() with missing url, ' +
'selectURL() resolves to ' + (resolve_to_config ? 'config' : 'urn:uuid'));
promise_test(async t => {
try {
await addModuleOnce("/shared-storage/resources/simple-module.js");
await sharedStorage.selectURL(
"test-url-selection-operation", [{
url: "https://#"
}],
{resolveToConfig: resolve_to_config, keepAlive: true});
} catch (e) {
assert_equals(e.name, 'DataError');
assert_equals(e.message,
'The url \"https://#\" is invalid.');
return;
}
assert_unreached("did not reject");
}, 'selectURL() with invalid url, ' +
'selectURL() resolves to ' + (resolve_to_config ? 'config' : 'urn:uuid'));
promise_test(async t => {
try {
await addModuleOnce("/shared-storage/resources/simple-module.js");
await sharedStorage.selectURL(
"test-url-selection-operation", [{
url: "/shared-storage/resources/frame0.html",
reportingMetadata: {
'click': "https://#"
}
}],
{resolveToConfig: resolve_to_config, keepAlive: true});
} catch (e) {
assert_equals(e.name, 'DataError');
assert_equals(e.message,
'The metadata for the url at index 0 has an invalid ' +
'or non-HTTPS report_url parameter \"https://#\".');
return;
}
assert_unreached("did not reject");
}, 'selectURL() with invalid report url ' +
'selectURL() resolves to ' + (resolve_to_config ? 'config' : 'urn:uuid'));
promise_test(async t => {
try {
await addModuleOnce("/shared-storage/resources/simple-module.js");
await sharedStorage.selectURL(
"test-url-selection-operation", [{
url: "/shared-storage/resources/frame0.html",
reportingMetadata: {
'click': "http://google.com"
}
}],
{resolveToConfig: resolve_to_config, keepAlive: true});
} catch (e) {
assert_equals(e.name, 'DataError');
assert_equals(e.message, 'The metadata for the url at index 0 has an ' +
'invalid or non-HTTPS report_url parameter \"http://google.com\".');
return;
}
assert_unreached("did not reject");
}, 'selectURL() with http report url, ' +
'selectURL() resolves to ' + (resolve_to_config ? 'config' : 'urn:uuid'));
promise_test(async t => {
try {
await addModuleOnce("/shared-storage/resources/simple-module.js");
await sharedStorage.selectURL(
"test-url-selection-operation", [{
url: "/shared-storage/resources/frame0.html",
reportingMetadata: {}
}],
{resolveToConfig: resolve_to_config, keepAlive: true});
} catch (e) {
assert_equals(e.name, 'DataError');
assert_equals(e.message, 'selectURL could not get reportingMetadata ' +
'object attributes');
return;
}
assert_unreached("did not reject");
}, 'selectURL() with invalid reportingMetadata ' +
'selectURL() resolves to ' + (resolve_to_config ? 'config' : 'urn:uuid'));
}
</script>
</body>
|