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
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* 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/. */
#include "gtest/gtest.h"
#include "jsapi.h"
#include "nsContentUtils.h"
#include "nsNetUtil.h"
#include "mozilla/CycleCollectedJSContext.h"
#include "mozilla/dom/ScriptSettings.h"
#include "mozilla/dom/SimpleGlobalObject.h"
struct IsURIInListMatch {
nsLiteralCString pattern;
bool firstMatch, secondMatch;
};
TEST(DOM_Base_ContentUtils, IsURIInList)
{
nsCOMPtr<nsIURI> uri, subURI;
nsresult rv = NS_NewURI(getter_AddRefs(uri),
"https://example.com/path/favicon.ico#"_ns);
ASSERT_TRUE(rv == NS_OK);
rv = NS_NewURI(getter_AddRefs(subURI),
"http://sub.example.com/favicon.ico?"_ns);
ASSERT_TRUE(rv == NS_OK);
static constexpr IsURIInListMatch patterns[] = {
{"bar.com,*.example.com,example.com,foo.com"_ns, true, true},
{"bar.com,example.com,*.example.com,foo.com"_ns, true, true},
{"*.example.com,example.com,foo.com"_ns, true, true},
{"example.com,*.example.com,foo.com"_ns, true, true},
{"*.example.com,example.com"_ns, true, true},
{"example.com,*.example.com"_ns, true, true},
{"*.example.com/,example.com/"_ns, true, true},
{"example.com/,*.example.com/"_ns, true, true},
{"*.example.com/pa,example.com/pa"_ns, false, false},
{"example.com/pa,*.example.com/pa"_ns, false, false},
{"*.example.com/pa/,example.com/pa/"_ns, false, false},
{"example.com/pa/,*.example.com/pa/"_ns, false, false},
{"*.example.com/path,example.com/path"_ns, false, false},
{"example.com/path,*.example.com/path"_ns, false, false},
{"*.example.com/path/,example.com/path/"_ns, true, false},
{"example.com/path/,*.example.com/path/"_ns, true, false},
{"*.example.com/favicon.ico"_ns, false, true},
{"example.com/path/favicon.ico"_ns, true, false},
{"*.example.com"_ns, false, true},
{"example.com"_ns, true, false},
{"foo.com"_ns, false, false},
{"*.foo.com"_ns, false, false},
};
for (auto& entry : patterns) {
bool result = nsContentUtils::IsURIInList(uri, entry.pattern);
ASSERT_EQ(result, entry.firstMatch) << "Matching " << entry.pattern;
result = nsContentUtils::IsURIInList(subURI, entry.pattern);
ASSERT_EQ(result, entry.secondMatch) << "Matching " << entry.pattern;
}
}
TEST(DOM_Base_ContentUtils, StringifyJSON_EmptyValue)
{
JS::RootedObject globalObject(
mozilla::dom::RootingCx(),
mozilla::dom::SimpleGlobalObject::Create(
mozilla::dom::SimpleGlobalObject::GlobalType::BindingDetail));
mozilla::dom::AutoJSAPI jsAPI;
ASSERT_TRUE(jsAPI.Init(globalObject));
JSContext* cx = jsAPI.cx();
nsAutoString serializedValue;
JS::RootedValue jsValue(cx);
ASSERT_TRUE(nsContentUtils::StringifyJSON(cx, &jsValue, serializedValue));
ASSERT_TRUE(serializedValue.EqualsLiteral("null"));
}
TEST(DOM_Base_ContentUtils, StringifyJSON_Object)
{
JS::RootedObject globalObject(
mozilla::dom::RootingCx(),
mozilla::dom::SimpleGlobalObject::Create(
mozilla::dom::SimpleGlobalObject::GlobalType::BindingDetail));
mozilla::dom::AutoJSAPI jsAPI;
ASSERT_TRUE(jsAPI.Init(globalObject));
JSContext* cx = jsAPI.cx();
nsAutoString serializedValue;
JS::RootedObject jsObj(cx, JS_NewPlainObject(cx));
JS::RootedString valueStr(cx, JS_NewStringCopyZ(cx, "Hello World!"));
ASSERT_TRUE(JS_DefineProperty(cx, jsObj, "key1", valueStr, JSPROP_ENUMERATE));
JS::RootedValue jsValue(cx, JS::ObjectValue(*jsObj));
ASSERT_TRUE(nsContentUtils::StringifyJSON(cx, &jsValue, serializedValue));
ASSERT_TRUE(serializedValue.EqualsLiteral("{\"key1\":\"Hello World!\"}"));
}
|