summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/trustedtypes/trusted_types_util_test.cc
blob: f17780dbc1bbd261960880aee32ff6545459e382 (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
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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "third_party/blink/renderer/core/trustedtypes/trusted_types_util.h"

#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/bindings/core/v8/string_or_trusted_html.h"
#include "third_party/blink/renderer/bindings/core/v8/string_or_trusted_html_or_trusted_script_or_trusted_script_url_or_trusted_url.h"
#include "third_party/blink/renderer/bindings/core/v8/string_or_trusted_script.h"
#include "third_party/blink/renderer/bindings/core/v8/string_or_trusted_script_url.h"
#include "third_party/blink/renderer/bindings/core/v8/usv_string_or_trusted_url.h"
#include "third_party/blink/renderer/core/dom/document.h"
#include "third_party/blink/renderer/core/testing/dummy_page_holder.h"
#include "third_party/blink/renderer/core/trustedtypes/trusted_html.h"
#include "third_party/blink/renderer/core/trustedtypes/trusted_script.h"
#include "third_party/blink/renderer/core/trustedtypes/trusted_script_url.h"
#include "third_party/blink/renderer/core/trustedtypes/trusted_url.h"
#include "third_party/blink/renderer/platform/bindings/exception_state.h"

namespace blink {

// Functions for checking throwing cases.
void GetStringFromTrustedTypeThrows(
    const StringOrTrustedHTMLOrTrustedScriptOrTrustedScriptURLOrTrustedURL&
        string_or_trusted_type) {
  Document* document = Document::CreateForTest();
  document->SetRequireTrustedTypes();
  DummyExceptionStateForTesting exception_state;
  ASSERT_FALSE(exception_state.HadException());
  String s = GetStringFromTrustedType(string_or_trusted_type, document,
                                      exception_state);
  EXPECT_TRUE(exception_state.HadException());
  EXPECT_EQ(ESErrorType::kTypeError, exception_state.CodeAs<ESErrorType>());
  exception_state.ClearException();
}

void GetStringFromTrustedHTMLThrows(
    const StringOrTrustedHTML& string_or_trusted_html) {
  std::unique_ptr<DummyPageHolder> dummy_page_holder =
      DummyPageHolder::Create(IntSize(800, 600));
  Document& document = dummy_page_holder->GetDocument();
  document.SetRequireTrustedTypes();
  V8TestingScope scope;
  DummyExceptionStateForTesting exception_state;
  ASSERT_FALSE(exception_state.HadException());
  String s = GetStringFromTrustedHTML(string_or_trusted_html, &document,
                                      exception_state);
  EXPECT_TRUE(exception_state.HadException());
  EXPECT_EQ(ESErrorType::kTypeError, exception_state.CodeAs<ESErrorType>());
  exception_state.ClearException();
}

void GetStringFromTrustedScriptThrows(
    const StringOrTrustedScript& string_or_trusted_script) {
  std::unique_ptr<DummyPageHolder> dummy_page_holder =
      DummyPageHolder::Create(IntSize(800, 600));
  Document& document = dummy_page_holder->GetDocument();
  document.SetRequireTrustedTypes();
  V8TestingScope scope;
  DummyExceptionStateForTesting exception_state;
  ASSERT_FALSE(exception_state.HadException());
  String s = GetStringFromTrustedScript(string_or_trusted_script, &document,
                                        exception_state);
  EXPECT_TRUE(exception_state.HadException());
  EXPECT_EQ(ESErrorType::kTypeError, exception_state.CodeAs<ESErrorType>());
  exception_state.ClearException();
}

void GetStringFromTrustedScriptURLThrows(
    const StringOrTrustedScriptURL& string_or_trusted_script_url) {
  std::unique_ptr<DummyPageHolder> dummy_page_holder =
      DummyPageHolder::Create(IntSize(800, 600));
  Document& document = dummy_page_holder->GetDocument();
  document.SetRequireTrustedTypes();
  V8TestingScope scope;
  DummyExceptionStateForTesting exception_state;
  ASSERT_FALSE(exception_state.HadException());
  String s = GetStringFromTrustedScriptURL(string_or_trusted_script_url,
                                           &document, exception_state);
  EXPECT_TRUE(exception_state.HadException());
  EXPECT_EQ(ESErrorType::kTypeError, exception_state.CodeAs<ESErrorType>());
  exception_state.ClearException();
}

void GetStringFromTrustedURLThrows(
    const USVStringOrTrustedURL& string_or_trusted_url) {
  std::unique_ptr<DummyPageHolder> dummy_page_holder =
      DummyPageHolder::Create(IntSize(800, 600));
  Document& document = dummy_page_holder->GetDocument();
  document.SetRequireTrustedTypes();
  V8TestingScope scope;
  DummyExceptionStateForTesting exception_state;
  ASSERT_FALSE(exception_state.HadException());
  String s = GetStringFromTrustedURL(string_or_trusted_url, &document,
                                     exception_state);
  EXPECT_TRUE(exception_state.HadException());
  EXPECT_EQ(ESErrorType::kTypeError, exception_state.CodeAs<ESErrorType>());
  exception_state.ClearException();
}

// Functions for checking non-throwing cases.
void GetStringFromTrustedTypeWorks(
    const StringOrTrustedHTMLOrTrustedScriptOrTrustedScriptURLOrTrustedURL&
        string_or_trusted_type,
    String expected) {
  Document* document = Document::CreateForTest();
  document->SetRequireTrustedTypes();
  DummyExceptionStateForTesting exception_state;
  String s = GetStringFromTrustedType(string_or_trusted_type, document,
                                      exception_state);
  ASSERT_EQ(s, expected);
}

void GetStringFromTrustedHTMLWorks(
    const StringOrTrustedHTML& string_or_trusted_html,
    String expected) {
  std::unique_ptr<DummyPageHolder> dummy_page_holder =
      DummyPageHolder::Create(IntSize(800, 600));
  Document& document = dummy_page_holder->GetDocument();
  document.SetRequireTrustedTypes();
  V8TestingScope scope;
  DummyExceptionStateForTesting exception_state;
  String s = GetStringFromTrustedHTML(string_or_trusted_html, &document,
                                      exception_state);
  ASSERT_EQ(s, expected);
}

void GetStringFromTrustedScriptWorks(
    const StringOrTrustedScript& string_or_trusted_script,
    String expected) {
  std::unique_ptr<DummyPageHolder> dummy_page_holder =
      DummyPageHolder::Create(IntSize(800, 600));
  Document& document = dummy_page_holder->GetDocument();
  document.SetRequireTrustedTypes();
  V8TestingScope scope;
  DummyExceptionStateForTesting exception_state;
  String s = GetStringFromTrustedScript(string_or_trusted_script, &document,
                                        exception_state);
  ASSERT_EQ(s, expected);
}

void GetStringFromTrustedScriptURLWorks(
    const StringOrTrustedScriptURL& string_or_trusted_script_url,
    String expected) {
  std::unique_ptr<DummyPageHolder> dummy_page_holder =
      DummyPageHolder::Create(IntSize(800, 600));
  Document& document = dummy_page_holder->GetDocument();
  document.SetRequireTrustedTypes();
  V8TestingScope scope;
  DummyExceptionStateForTesting exception_state;
  String s = GetStringFromTrustedScriptURL(string_or_trusted_script_url,
                                           &document, exception_state);
  ASSERT_EQ(s, expected);
}

void GetStringFromTrustedURLWorks(
    const USVStringOrTrustedURL& string_or_trusted_url,
    String expected) {
  std::unique_ptr<DummyPageHolder> dummy_page_holder =
      DummyPageHolder::Create(IntSize(800, 600));
  Document& document = dummy_page_holder->GetDocument();
  document.SetRequireTrustedTypes();
  V8TestingScope scope;
  DummyExceptionStateForTesting exception_state;
  String s = GetStringFromTrustedURL(string_or_trusted_url, &document,
                                     exception_state);
  ASSERT_EQ(s, expected);
}

// GetStringFromTrustedType() tests
TEST(TrustedTypesUtilTest, GetStringFromTrustedType_TrustedHTML) {
  TrustedHTML* html = TrustedHTML::Create("A string");
  StringOrTrustedHTMLOrTrustedScriptOrTrustedScriptURLOrTrustedURL
      trusted_value =
          StringOrTrustedHTMLOrTrustedScriptOrTrustedScriptURLOrTrustedURL::
              FromTrustedHTML(html);
  GetStringFromTrustedTypeWorks(trusted_value, "A string");
}

TEST(TrustedTypesUtilTest, GetStringFromTrustedType_TrustedScript) {
  TrustedScript* script = TrustedScript::Create("A string");
  StringOrTrustedHTMLOrTrustedScriptOrTrustedScriptURLOrTrustedURL
      trusted_value =
          StringOrTrustedHTMLOrTrustedScriptOrTrustedScriptURLOrTrustedURL::
              FromTrustedScript(script);
  GetStringFromTrustedTypeWorks(trusted_value, "A string");
}

TEST(TrustedTypesUtilTest, GetStringFromTrustedType_TrustedScriptURL) {
  KURL url_address("http://www.example.com/");
  TrustedScriptURL* script_url = TrustedScriptURL::Create(url_address);
  StringOrTrustedHTMLOrTrustedScriptOrTrustedScriptURLOrTrustedURL
      trusted_value =
          StringOrTrustedHTMLOrTrustedScriptOrTrustedScriptURLOrTrustedURL::
              FromTrustedScriptURL(script_url);
  GetStringFromTrustedTypeWorks(trusted_value, "http://www.example.com/");
}

TEST(TrustedTypesUtilTest, GetStringFromTrustedType_TrustedURL) {
  KURL url_address("http://www.example.com/");
  TrustedURL* url = TrustedURL::Create(url_address);
  StringOrTrustedHTMLOrTrustedScriptOrTrustedScriptURLOrTrustedURL
      trusted_value =
          StringOrTrustedHTMLOrTrustedScriptOrTrustedScriptURLOrTrustedURL::
              FromTrustedURL(url);
  GetStringFromTrustedTypeWorks(trusted_value, "http://www.example.com/");
}

TEST(TrustedTypesUtilTest, GetStringFromTrustedType_String) {
  StringOrTrustedHTMLOrTrustedScriptOrTrustedScriptURLOrTrustedURL
      string_value =
          StringOrTrustedHTMLOrTrustedScriptOrTrustedScriptURLOrTrustedURL::
              FromString("A string");
  GetStringFromTrustedTypeThrows(string_value);
}

// GetStringFromTrustedTypeWithoutCheck() tests
TEST(TrustedTypesUtilTest, GetStringFromTrustedTypeWithoutCheck_TrustedHTML) {
  TrustedHTML* html = TrustedHTML::Create("A string");
  StringOrTrustedHTMLOrTrustedScriptOrTrustedScriptURLOrTrustedURL
      trusted_value =
          StringOrTrustedHTMLOrTrustedScriptOrTrustedScriptURLOrTrustedURL::
              FromTrustedHTML(html);
  String s = GetStringFromTrustedTypeWithoutCheck(trusted_value);
  ASSERT_EQ(s, "A string");
}

TEST(TrustedTypesUtilTest, GetStringFromTrustedTypeWithoutCheck_TrustedScript) {
  TrustedScript* script = TrustedScript::Create("A string");
  StringOrTrustedHTMLOrTrustedScriptOrTrustedScriptURLOrTrustedURL
      trusted_value =
          StringOrTrustedHTMLOrTrustedScriptOrTrustedScriptURLOrTrustedURL::
              FromTrustedScript(script);
  String s = GetStringFromTrustedTypeWithoutCheck(trusted_value);
  ASSERT_EQ(s, "A string");
}

TEST(TrustedTypesUtilTest,
     GetStringFromTrustedTypeWithoutCheck_TrustedScriptURL) {
  KURL url_address("http://www.example.com/");
  TrustedScriptURL* script_url = TrustedScriptURL::Create(url_address);
  StringOrTrustedHTMLOrTrustedScriptOrTrustedScriptURLOrTrustedURL
      trusted_value =
          StringOrTrustedHTMLOrTrustedScriptOrTrustedScriptURLOrTrustedURL::
              FromTrustedScriptURL(script_url);
  String s = GetStringFromTrustedTypeWithoutCheck(trusted_value);
  ASSERT_EQ(s, "http://www.example.com/");
}

TEST(TrustedTypesUtilTest, GetStringFromTrustedTypeWithoutCheck_TrustedURL) {
  KURL url_address("http://www.example.com/");
  TrustedURL* url = TrustedURL::Create(url_address);
  StringOrTrustedHTMLOrTrustedScriptOrTrustedScriptURLOrTrustedURL
      trusted_value =
          StringOrTrustedHTMLOrTrustedScriptOrTrustedScriptURLOrTrustedURL::
              FromTrustedURL(url);
  String s = GetStringFromTrustedTypeWithoutCheck(trusted_value);
  ASSERT_EQ(s, "http://www.example.com/");
}

TEST(TrustedTypesUtilTest, GetStringFromTrustedTypeWithoutCheck_String) {
  StringOrTrustedHTMLOrTrustedScriptOrTrustedScriptURLOrTrustedURL
      string_value =
          StringOrTrustedHTMLOrTrustedScriptOrTrustedScriptURLOrTrustedURL::
              FromString("A string");
  String s = GetStringFromTrustedTypeWithoutCheck(string_value);
  ASSERT_EQ(s, "A string");
}

TEST(TrustedTypesUtilTest, GetStringFromTrustedTypeWithoutCheck_Null) {
  StringOrTrustedHTMLOrTrustedScriptOrTrustedScriptURLOrTrustedURL null_value =
      StringOrTrustedHTMLOrTrustedScriptOrTrustedScriptURLOrTrustedURL();
  String s = GetStringFromTrustedTypeWithoutCheck(null_value);
  ASSERT_EQ(s, "");
}

// GetStringFromTrustedHTML tests
TEST(TrustedTypesUtilTest, GetStringFromTrustedHTML_TrustedHTML) {
  TrustedHTML* html = TrustedHTML::Create("A string");
  StringOrTrustedHTML trusted_value =
      StringOrTrustedHTML::FromTrustedHTML(html);
  GetStringFromTrustedHTMLWorks(trusted_value, "A string");
}

TEST(TrustedTypesUtilTest, GetStringFromTrustedHTML_String) {
  StringOrTrustedHTML string_value =
      StringOrTrustedHTML::FromString("A string");
  GetStringFromTrustedHTMLThrows(string_value);
}

// GetStringFromTrustedScript tests
TEST(TrustedTypesUtilTest, GetStringFromTrustedScript_TrustedScript) {
  TrustedScript* script = TrustedScript::Create("A string");
  StringOrTrustedScript trusted_value =
      StringOrTrustedScript::FromTrustedScript(script);
  GetStringFromTrustedScriptWorks(trusted_value, "A string");
}

TEST(TrustedTypesUtilTest, GetStringFromTrustedScript_String) {
  StringOrTrustedScript string_value =
      StringOrTrustedScript::FromString("A string");
  GetStringFromTrustedScriptThrows(string_value);
}

// GetStringFromTrustedScriptURL tests
TEST(TrustedTypesUtilTest, GetStringFromTrustedScriptURL_TrustedScriptURL) {
  KURL url_address("http://www.example.com/");
  TrustedScriptURL* script_url = TrustedScriptURL::Create(url_address);
  StringOrTrustedScriptURL trusted_value =
      StringOrTrustedScriptURL::FromTrustedScriptURL(script_url);
  GetStringFromTrustedScriptURLWorks(trusted_value, "http://www.example.com/");
}

TEST(TrustedTypesUtilTest, GetStringFromTrustedScriptURL_String) {
  StringOrTrustedScriptURL string_value =
      StringOrTrustedScriptURL::FromString("A string");
  GetStringFromTrustedScriptURLThrows(string_value);
}

// GetStringFromTrustedURL tests
TEST(TrustedTypesUtilTest, GetStringFromTrustedURL_TrustedURL) {
  KURL url_address("http://www.example.com/");
  TrustedURL* url = TrustedURL::Create(url_address);
  USVStringOrTrustedURL trusted_value =
      USVStringOrTrustedURL::FromTrustedURL(url);
  GetStringFromTrustedURLWorks(trusted_value, "http://www.example.com/");
}

TEST(TrustedTypesUtilTest, GetStringFromTrustedURL_String) {
  USVStringOrTrustedURL string_value =
      USVStringOrTrustedURL::FromUSVString("A string");
  GetStringFromTrustedURLThrows(string_value);
}
}  // namespace blink