Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "chrome/browser/ui/webui/settings_utils.h" | |
| 6 | |
| 7 #include "testing/gtest/include/gtest/gtest.h" | |
| 8 | |
| 9 namespace settings_utils { | |
| 10 | |
| 11 TEST(SettingsUtilsTest, FixupAndValidateStartupPage) { | |
| 12 EXPECT_FALSE(FixupAndValidateStartupPage(std::string(), nullptr)); | |
| 13 EXPECT_FALSE(FixupAndValidateStartupPage(" ", nullptr)); | |
| 14 EXPECT_FALSE(FixupAndValidateStartupPage("^&*@)^)", nullptr)); | |
| 15 EXPECT_FALSE(FixupAndValidateStartupPage("chrome://quit", nullptr)); | |
| 16 | |
| 17 EXPECT_TRUE(FixupAndValidateStartupPage("facebook.com", nullptr)); | |
| 18 EXPECT_TRUE(FixupAndValidateStartupPage("http://reddit.com", nullptr)); | |
| 19 EXPECT_TRUE(FixupAndValidateStartupPage("https://google.com", nullptr)); | |
| 20 EXPECT_TRUE(FixupAndValidateStartupPage("chrome://apps", nullptr)); | |
|
dpapad
2016/03/31 20:34:08
Can we add one case where the 2nd parameter is use
Dan Beam
2016/03/31 22:04:40
Done.
| |
| 21 } | |
| 22 | |
| 23 } // namespace settings_utils | |
| OLD | NEW |