forked from Pissandshittium/pissandshittium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchrome_content_renderer_client_unittest.cc
603 lines (546 loc) · 22.3 KB
/
chrome_content_renderer_client_unittest.cc
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
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
// Copyright (c) 2012 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 "chrome/renderer/chrome_content_renderer_client.h"
#include <stddef.h>
#include <map>
#include <string>
#include <utility>
#include <vector>
#include "base/metrics/histogram_samples.h"
#include "base/strings/utf_string_conversions.h"
#include "base/test/metrics/histogram_tester.h"
#include "base/values.h"
#include "build/build_config.h"
#include "chrome/renderer/searchbox/search_bouncer.h"
#include "components/data_reduction_proxy/core/common/data_reduction_proxy_headers.h"
#include "content/public/common/webplugininfo.h"
#include "extensions/buildflags/buildflags.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/public/platform/web_string.h"
#include "third_party/blink/public/platform/web_url_response.h"
#include "url/gurl.h"
#if BUILDFLAG(ENABLE_EXTENSIONS)
#include "extensions/common/extension.h"
#include "extensions/common/extension_builder.h"
#include "extensions/common/manifest_constants.h"
#endif
#if BUILDFLAG(ENABLE_NACL)
#include "third_party/blink/public/platform/web_string.h"
#include "third_party/blink/public/platform/web_vector.h"
#include "third_party/blink/public/web/web_plugin_params.h"
#endif
#if BUILDFLAG(ENABLE_NACL)
using blink::WebPluginParams;
using blink::WebString;
using blink::WebVector;
#endif
using content::WebPluginInfo;
using content::WebPluginMimeType;
namespace {
#if BUILDFLAG(ENABLE_NACL)
const bool kNaClRestricted = false;
const bool kNaClUnrestricted = true;
const bool kExtensionNotFromWebStore = false;
const bool kExtensionFromWebStore = true;
#endif
#if BUILDFLAG(ENABLE_EXTENSIONS)
const bool kNotHostedApp = false;
const bool kHostedApp = true;
#endif
#if BUILDFLAG(ENABLE_NACL)
const char kExtensionUrl[] = "chrome-extension://extension_id/background.html";
const char kChatManifestFS[] = "filesystem:https://talkgadget.google.com/foo";
#endif
const char kChatAppURL[] = "https://talkgadget.google.com/hangouts/foo";
void AddContentTypeHandler(content::WebPluginInfo* info,
const char* mime_type,
const char* manifest_url) {
content::WebPluginMimeType mime_type_info;
mime_type_info.mime_type = mime_type;
mime_type_info.additional_params.emplace_back(
base::UTF8ToUTF16("nacl"), base::UTF8ToUTF16(manifest_url));
info->mime_types.push_back(mime_type_info);
}
} // namespace
typedef testing::Test ChromeContentRendererClientTest;
#if BUILDFLAG(ENABLE_EXTENSIONS)
scoped_refptr<const extensions::Extension> CreateTestExtension(
extensions::Manifest::Location location, bool is_from_webstore,
bool is_hosted_app, const std::string& app_url) {
int flags = is_from_webstore ?
extensions::Extension::FROM_WEBSTORE:
extensions::Extension::NO_FLAGS;
base::DictionaryValue manifest;
manifest.SetString("name", "NaCl Extension");
manifest.SetString("version", "1");
manifest.SetInteger("manifest_version", 2);
if (is_hosted_app) {
auto url_list = std::make_unique<base::ListValue>();
url_list->AppendString(app_url);
manifest.Set(extensions::manifest_keys::kWebURLs, std::move(url_list));
manifest.SetString(extensions::manifest_keys::kLaunchWebURL, app_url);
}
std::string error;
return extensions::Extension::Create(base::FilePath(), location, manifest,
flags, &error);
}
scoped_refptr<const extensions::Extension> CreateExtension(
bool is_from_webstore) {
return CreateTestExtension(
extensions::Manifest::INTERNAL, is_from_webstore, kNotHostedApp,
std::string());
}
scoped_refptr<const extensions::Extension> CreateExtensionWithLocation(
extensions::Manifest::Location location, bool is_from_webstore) {
return CreateTestExtension(
location, is_from_webstore, kNotHostedApp, std::string());
}
scoped_refptr<const extensions::Extension> CreateHostedApp(
bool is_from_webstore, const std::string& app_url) {
return CreateTestExtension(extensions::Manifest::INTERNAL,
is_from_webstore,
kHostedApp,
app_url);
}
#endif // BUILDFLAG(ENABLE_EXTENSIONS)
TEST_F(ChromeContentRendererClientTest, NaClRestriction) {
// Unknown content types have no NaCl module.
{
WebPluginInfo info;
EXPECT_EQ(GURL(),
ChromeContentRendererClient::GetNaClContentHandlerURL(
"application/x-foo", info));
}
// Known content types have a NaCl module.
{
WebPluginInfo info;
AddContentTypeHandler(&info, "application/x-foo", "www.foo.com");
EXPECT_EQ(GURL("www.foo.com"),
ChromeContentRendererClient::GetNaClContentHandlerURL(
"application/x-foo", info));
}
#if BUILDFLAG(ENABLE_NACL)
// --enable-nacl allows all NaCl apps.
{
WebPluginParams params;
EXPECT_TRUE(ChromeContentRendererClient::IsNaClAllowed(
GURL(),
GURL(),
kNaClUnrestricted,
CreateExtension(kExtensionNotFromWebStore).get(),
¶ms));
}
// Unpacked extensions are allowed without --enable-nacl.
{
WebPluginParams params;
EXPECT_TRUE(ChromeContentRendererClient::IsNaClAllowed(
GURL(),
GURL(kExtensionUrl),
kNaClRestricted,
CreateExtensionWithLocation(extensions::Manifest::UNPACKED,
kExtensionNotFromWebStore).get(),
¶ms));
}
// Component extensions are allowed without --enable-nacl.
{
WebPluginParams params;
EXPECT_TRUE(ChromeContentRendererClient::IsNaClAllowed(
GURL(),
GURL(kExtensionUrl),
kNaClRestricted,
CreateExtensionWithLocation(extensions::Manifest::COMPONENT,
kExtensionNotFromWebStore).get(),
¶ms));
}
{
WebPluginParams params;
EXPECT_TRUE(ChromeContentRendererClient::IsNaClAllowed(
GURL(),
GURL(kExtensionUrl),
kNaClRestricted,
CreateExtensionWithLocation(extensions::Manifest::EXTERNAL_COMPONENT,
kExtensionNotFromWebStore).get(),
¶ms));
}
// Extensions that are force installed by policy are allowed without
// --enable-nacl.
{
WebPluginParams params;
EXPECT_TRUE(ChromeContentRendererClient::IsNaClAllowed(
GURL(),
GURL(kExtensionUrl),
kNaClRestricted,
CreateExtensionWithLocation(extensions::Manifest::EXTERNAL_POLICY,
kExtensionNotFromWebStore).get(),
¶ms));
EXPECT_TRUE(ChromeContentRendererClient::IsNaClAllowed(
GURL(),
GURL(kExtensionUrl),
kNaClRestricted,
CreateExtensionWithLocation(
extensions::Manifest::EXTERNAL_POLICY_DOWNLOAD,
kExtensionNotFromWebStore).get(),
¶ms));
}
// CWS extensions are allowed without --enable-nacl if called from an
// extension url.
{
WebPluginParams params;
EXPECT_TRUE(ChromeContentRendererClient::IsNaClAllowed(
GURL(),
GURL(kExtensionUrl),
kNaClRestricted,
CreateExtension(kExtensionFromWebStore).get(),
¶ms));
}
// Whitelisted URLs are allowed without --enable-nacl. There is a whitelist
// for the app URL and the manifest URL.
{
WebPluginParams params;
// Whitelisted Chat app is allowed.
EXPECT_TRUE(ChromeContentRendererClient::IsNaClAllowed(
GURL(kChatManifestFS),
GURL(kChatAppURL),
kNaClRestricted,
nullptr,
¶ms));
// Whitelisted manifest URL, bad app URLs, NOT allowed.
EXPECT_FALSE(ChromeContentRendererClient::IsNaClAllowed(
GURL(kChatManifestFS),
GURL("http://plus.google.com/foo"), // http scheme
kNaClRestricted, nullptr, ¶ms));
EXPECT_FALSE(ChromeContentRendererClient::IsNaClAllowed(
GURL(kChatManifestFS),
GURL("http://plus.sandbox.google.com/foo"), // http scheme
kNaClRestricted, nullptr, ¶ms));
EXPECT_FALSE(ChromeContentRendererClient::IsNaClAllowed(
GURL(kChatManifestFS),
GURL("https://plus.google.evil.com/foo"), // bad host
kNaClRestricted, nullptr, ¶ms));
// Whitelisted app URL, bad manifest URL, NOT allowed.
EXPECT_FALSE(ChromeContentRendererClient::IsNaClAllowed(
GURL("http://ssl.gstatic.com/s2/oz/nacl/foo"), // http scheme
GURL(kChatAppURL), kNaClRestricted, nullptr, ¶ms));
EXPECT_FALSE(ChromeContentRendererClient::IsNaClAllowed(
GURL("https://ssl.gstatic.evil.com/s2/oz/nacl/foo"), // bad host
GURL(kChatAppURL), kNaClRestricted, nullptr, ¶ms));
EXPECT_FALSE(ChromeContentRendererClient::IsNaClAllowed(
GURL("https://ssl.gstatic.com/wrong/s2/oz/nacl/foo"), // bad path
GURL(kChatAppURL), kNaClRestricted, nullptr, ¶ms));
}
// Non-whitelisted URLs are blocked without --enable-nacl.
{
WebPluginParams params;
EXPECT_FALSE(ChromeContentRendererClient::IsNaClAllowed(
GURL(),
GURL("https://plus.google.com.evil.com/foo1"),
kNaClRestricted,
nullptr,
¶ms));
}
// Non chrome-extension:// URLs belonging to hosted apps are allowed for
// webstore installed hosted apps.
{
WebPluginParams params;
EXPECT_TRUE(ChromeContentRendererClient::IsNaClAllowed(
GURL(),
GURL("http://example.com/test.html"),
kNaClRestricted,
CreateHostedApp(kExtensionFromWebStore,
"http://example.com/").get(),
¶ms));
EXPECT_FALSE(ChromeContentRendererClient::IsNaClAllowed(
GURL(),
GURL("http://example.com/test.html"),
kNaClRestricted,
CreateHostedApp(kExtensionNotFromWebStore,
"http://example.com/").get(),
¶ms));
EXPECT_FALSE(ChromeContentRendererClient::IsNaClAllowed(
GURL(),
GURL("http://example.evil.com/test.html"),
kNaClRestricted,
CreateHostedApp(kExtensionNotFromWebStore,
"http://example.com/").get(),
¶ms));
}
#endif // BUILDFLAG(ENABLE_NACL)
}
TEST_F(ChromeContentRendererClientTest, AllowPepperMediaStreamAPI) {
ChromeContentRendererClient test;
#if defined(OS_ANDROID)
EXPECT_FALSE(test.AllowPepperMediaStreamAPI(GURL(kChatAppURL)));
#else
EXPECT_TRUE(test.AllowPepperMediaStreamAPI(GURL(kChatAppURL)));
#endif
}
// SearchBouncer doesn't exist on Android.
#if !defined(OS_ANDROID)
TEST_F(ChromeContentRendererClientTest, ShouldSuppressErrorPage) {
ChromeContentRendererClient client;
SearchBouncer::GetInstance()->SetNewTabPageURL(GURL("http://example.com/n"));
EXPECT_FALSE(client.ShouldSuppressErrorPage(nullptr,
GURL("http://example.com")));
EXPECT_TRUE(client.ShouldSuppressErrorPage(nullptr,
GURL("http://example.com/n")));
SearchBouncer::GetInstance()->SetNewTabPageURL(GURL::EmptyGURL());
}
TEST_F(ChromeContentRendererClientTest, ShouldTrackUseCounter) {
ChromeContentRendererClient client;
SearchBouncer::GetInstance()->SetNewTabPageURL(GURL("http://example.com/n"));
EXPECT_TRUE(client.ShouldTrackUseCounter(GURL("http://example.com")));
EXPECT_FALSE(client.ShouldTrackUseCounter(GURL("http://example.com/n")));
SearchBouncer::GetInstance()->SetNewTabPageURL(GURL::EmptyGURL());
}
#endif
TEST_F(ChromeContentRendererClientTest, AddImageContextMenuPropertiesForLoFi) {
ChromeContentRendererClient client;
blink::WebURLResponse web_url_response;
web_url_response.AddHTTPHeaderField(
blink::WebString::FromUTF8(
data_reduction_proxy::chrome_proxy_content_transform_header()),
blink::WebString::FromUTF8(
data_reduction_proxy::empty_image_directive()));
std::map<std::string, std::string> properties;
client.AddImageContextMenuProperties(
web_url_response, /*is_image_in_context_a_placeholder_image=*/false,
&properties);
EXPECT_EQ(
data_reduction_proxy::empty_image_directive(),
properties
[data_reduction_proxy::chrome_proxy_content_transform_header()]);
}
TEST_F(ChromeContentRendererClientTest,
AddImageContextMenuPropertiesForPlaceholder) {
ChromeContentRendererClient client;
std::map<std::string, std::string> properties;
client.AddImageContextMenuProperties(
blink::WebURLResponse(), /*is_image_in_context_a_placeholder_image=*/true,
&properties);
EXPECT_EQ(
data_reduction_proxy::empty_image_directive(),
properties
[data_reduction_proxy::chrome_proxy_content_transform_header()]);
}
TEST_F(ChromeContentRendererClientTest, RewriteEmbed) {
struct TestData {
std::string original;
std::string expected;
} test_data[] = {
// { original, expected }
{"youtube.com", ""},
{"www.youtube.com", ""},
{"http://www.youtube.com", ""},
{"https://www.youtube.com", ""},
{"http://www.foo.youtube.com", ""},
{"https://www.foo.youtube.com", ""},
// Non-YouTube domains shouldn't be modified
{"http://www.plus.google.com", ""},
// URL isn't using Flash
{"http://www.youtube.com/embed/deadbeef", ""},
// URL isn't using Flash, no www
{"http://youtube.com/embed/deadbeef", ""},
// URL isn't using Flash, invalid parameter construct
{"http://www.youtube.com/embed/deadbeef&start=4", ""},
// URL is using Flash, no www
{"http://youtube.com/v/deadbeef", "http://youtube.com/embed/deadbeef"},
// URL is using Flash, is valid, https
{"https://www.youtube.com/v/deadbeef",
"https://www.youtube.com/embed/deadbeef"},
// URL is using Flash, is valid, http
{"http://www.youtube.com/v/deadbeef",
"http://www.youtube.com/embed/deadbeef"},
// URL is using Flash, is valid, not a complete URL, no www or protocol
{"youtube.com/v/deadbeef", ""},
// URL is using Flash, is valid, not a complete URL,or protocol
{"www.youtube.com/v/deadbeef", ""},
// URL is using Flash, valid
{"https://www.foo.youtube.com/v/deadbeef",
"https://www.foo.youtube.com/embed/deadbeef"},
// URL is using Flash, is valid, has one parameter
{"http://www.youtube.com/v/deadbeef?start=4",
"http://www.youtube.com/embed/deadbeef?start=4"},
// URL is using Flash, is valid, has multiple parameters
{"http://www.youtube.com/v/deadbeef?start=4&fs=1",
"http://www.youtube.com/embed/deadbeef?start=4&fs=1"},
// URL is using Flash, invalid parameter construct, has one parameter
{"http://www.youtube.com/v/deadbeef&start=4",
"http://www.youtube.com/embed/deadbeef?start=4"},
// URL is using Flash, invalid parameter construct, has multiple
// parameters
{"http://www.youtube.com/v/deadbeef&start=4&fs=1?foo=bar",
"http://www.youtube.com/embed/deadbeef?start=4&fs=1&foo=bar"},
// URL is using Flash, invalid parameter construct, has multiple
// parameters
{"http://www.youtube.com/v/deadbeef&start=4&fs=1",
"http://www.youtube.com/embed/deadbeef?start=4&fs=1"},
// Invalid parameter construct
{"http://www.youtube.com/abcd/v/deadbeef", ""},
// Invalid parameter construct
{"http://www.youtube.com/v/abcd/", "http://www.youtube.com/embed/abcd/"},
// Invalid parameter construct
{"http://www.youtube.com/v/123/", "http://www.youtube.com/embed/123/"},
// youtube-nocookie.com
{"http://www.youtube-nocookie.com/v/123/",
"http://www.youtube-nocookie.com/embed/123/"},
// youtube-nocookie.com, isn't using flash
{"http://www.youtube-nocookie.com/embed/123/", ""},
// youtube-nocookie.com, has one parameter
{"http://www.youtube-nocookie.com/v/123?start=foo",
"http://www.youtube-nocookie.com/embed/123?start=foo"},
// youtube-nocookie.com, has multiple parameters
{"http://www.youtube-nocookie.com/v/123?start=foo&bar=baz",
"http://www.youtube-nocookie.com/embed/123?start=foo&bar=baz"},
// youtube-nocookie.com, invalid parameter construct, has one parameter
{"http://www.youtube-nocookie.com/v/123&start=foo",
"http://www.youtube-nocookie.com/embed/123?start=foo"},
// youtube-nocookie.com, invalid parameter construct, has multiple
// parameters
{"http://www.youtube-nocookie.com/v/123&start=foo&bar=baz",
"http://www.youtube-nocookie.com/embed/123?start=foo&bar=baz"},
// youtube-nocookie.com, https
{"https://www.youtube-nocookie.com/v/123/",
"https://www.youtube-nocookie.com/embed/123/"},
// URL isn't using Flash, has JS API enabled
{"http://www.youtube.com/embed/deadbeef?enablejsapi=1", ""},
// URL is using Flash, has JS API enabled
{"http://www.youtube.com/v/deadbeef?enablejsapi=1",
"http://www.youtube.com/embed/deadbeef?enablejsapi=1"},
// youtube-nocookie.com, has JS API enabled
{"http://www.youtube-nocookie.com/v/123?enablejsapi=1",
"http://www.youtube-nocookie.com/embed/123?enablejsapi=1"},
// URL is using Flash, has JS API enabled, invalid parameter construct
{"http://www.youtube.com/v/deadbeef&enablejsapi=1",
"http://www.youtube.com/embed/deadbeef?enablejsapi=1"},
// URL is using Flash, has JS API enabled, invalid parameter construct,
// has multiple parameters
{"http://www.youtube.com/v/deadbeef&start=4&enablejsapi=1",
"http://www.youtube.com/embed/deadbeef?start=4&enablejsapi=1"},
};
ChromeContentRendererClient client;
for (const auto& data : test_data)
EXPECT_EQ(GURL(data.expected),
client.OverrideFlashEmbedWithHTML(GURL(data.original)));
}
class ChromeContentRendererClientMetricsTest : public testing::Test {
public:
ChromeContentRendererClientMetricsTest() = default;
std::unique_ptr<base::HistogramSamples> GetHistogramSamples() {
return histogram_tester_.GetHistogramSamplesSinceCreation(
internal::kFlashYouTubeRewriteUMA);
}
void OverrideFlashEmbed(const GURL& gurl) {
client_.OverrideFlashEmbedWithHTML(gurl);
}
private:
ChromeContentRendererClient client_;
base::HistogramTester histogram_tester_;
DISALLOW_COPY_AND_ASSIGN(ChromeContentRendererClientMetricsTest);
};
TEST_F(ChromeContentRendererClientMetricsTest, RewriteEmbedIneligibleURL) {
std::unique_ptr<base::HistogramSamples> samples = GetHistogramSamples();
EXPECT_EQ(0, samples->TotalCount());
const std::string test_data[] = {
// HTTP, www, no flash
"http://www.youtube.com",
// No flash, subdomain
"http://www.foo.youtube.com",
// No flash
"youtube.com",
// Not youtube
"http://www.plus.google.com",
// Already using HTML5
"http://youtube.com/embed/deadbeef",
// Already using HTML5, enablejsapi=1
"http://www.youtube.com/embed/deadbeef?enablejsapi=1"};
for (const auto& data : test_data) {
GURL gurl = GURL(data);
OverrideFlashEmbed(gurl);
samples = GetHistogramSamples();
EXPECT_EQ(0, samples->GetCount(internal::SUCCESS));
EXPECT_EQ(0, samples->TotalCount());
}
}
TEST_F(ChromeContentRendererClientMetricsTest, RewriteEmbedSuccess) {
ChromeContentRendererClient client;
std::unique_ptr<base::HistogramSamples> samples = GetHistogramSamples();
auto total_count = 0;
EXPECT_EQ(total_count, samples->TotalCount());
const std::string test_data[] = {
// HTTP, www, flash
"http://www.youtube.com/v/deadbeef",
// HTTP, no www, flash
"http://youtube.com/v/deadbeef",
// HTTPS, www, flash
"https://www.youtube.com/v/deadbeef",
// HTTPS, no www, flash
"https://youtube.com/v/deadbeef",
// Invalid parameter construct
"http://www.youtube.com/v/abcd/",
// Invalid parameter construct
"http://www.youtube.com/v/1234/",
};
for (const auto& data : test_data) {
++total_count;
GURL gurl = GURL(data);
OverrideFlashEmbed(gurl);
samples = GetHistogramSamples();
EXPECT_EQ(total_count, samples->GetCount(internal::SUCCESS));
EXPECT_EQ(total_count, samples->TotalCount());
}
// Invalid parameter construct
GURL gurl = GURL("http://www.youtube.com/abcd/v/deadbeef");
samples = GetHistogramSamples();
EXPECT_EQ(total_count, samples->GetCount(internal::SUCCESS));
EXPECT_EQ(total_count, samples->TotalCount());
}
TEST_F(ChromeContentRendererClientMetricsTest, RewriteEmbedSuccessRewrite) {
ChromeContentRendererClient client;
std::unique_ptr<base::HistogramSamples> samples = GetHistogramSamples();
auto total_count = 0;
EXPECT_EQ(total_count, samples->TotalCount());
const std::string test_data[] = {
// Invalid parameter construct, one parameter
"http://www.youtube.com/v/deadbeef&start=4",
// Invalid parameter construct, has multiple parameters
"http://www.youtube.com/v/deadbeef&start=4&fs=1?foo=bar",
};
for (const auto& data : test_data) {
++total_count;
GURL gurl = GURL(data);
client.OverrideFlashEmbedWithHTML(gurl);
samples = GetHistogramSamples();
EXPECT_EQ(total_count, samples->GetCount(internal::SUCCESS_PARAMS_REWRITE));
EXPECT_EQ(total_count, samples->TotalCount());
}
// Invalid parameter construct, not flash
GURL gurl = GURL("http://www.youtube.com/embed/deadbeef&start=4");
OverrideFlashEmbed(gurl);
samples = GetHistogramSamples();
EXPECT_EQ(total_count, samples->GetCount(internal::SUCCESS_PARAMS_REWRITE));
EXPECT_EQ(total_count, samples->TotalCount());
}
TEST_F(ChromeContentRendererClientMetricsTest, RewriteEmbedJSAPI) {
ChromeContentRendererClient client;
std::unique_ptr<base::HistogramSamples> samples = GetHistogramSamples();
auto total_count = 0;
EXPECT_EQ(total_count, samples->TotalCount());
const std::string test_data[] = {
// Valid parameter construct, one parameter
"http://www.youtube.com/v/deadbeef?enablejsapi=1",
// Valid parameter construct, has multiple parameters
"http://www.youtube.com/v/deadbeef?enablejsapi=1&foo=2",
// Invalid parameter construct, one parameter
"http://www.youtube.com/v/deadbeef&enablejsapi=1",
// Invalid parameter construct, has multiple parameters
"http://www.youtube.com/v/deadbeef&enablejsapi=1&foo=2"};
for (const auto& data : test_data) {
++total_count;
GURL gurl = GURL(data);
OverrideFlashEmbed(gurl);
samples = GetHistogramSamples();
EXPECT_EQ(total_count, samples->GetCount(internal::SUCCESS_ENABLEJSAPI));
EXPECT_EQ(total_count, samples->TotalCount());
}
}