Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(263)

Side by Side Diff: extensions/browser/guest_view/app_view/app_view_apitest.cc

Issue 2457983003: Disable TestAppViewWithUndefinedDataShouldSucceed on chrome OS (Closed)
Patch Set: Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/command_line.h" 5 #include "base/command_line.h"
6 #include "base/path_service.h" 6 #include "base/path_service.h"
7 #include "base/strings/stringprintf.h" 7 #include "base/strings/stringprintf.h"
8 #include "components/guest_view/browser/guest_view_manager.h" 8 #include "components/guest_view/browser/guest_view_manager.h"
9 #include "components/guest_view/browser/guest_view_manager_factory.h" 9 #include "components/guest_view/browser/guest_view_manager_factory.h"
10 #include "components/guest_view/browser/test_guest_view_manager.h" 10 #include "components/guest_view/browser/test_guest_view_manager.h"
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 181
182 // Tests that <appview> correctly processes parameters passed on connect. 182 // Tests that <appview> correctly processes parameters passed on connect.
183 // This test should fail to connect because the embedded app (skeleton) will 183 // This test should fail to connect because the embedded app (skeleton) will
184 // refuse the data passed by the embedder app and deny the request. 184 // refuse the data passed by the embedder app and deny the request.
185 IN_PROC_BROWSER_TEST_P(AppViewTest, TestAppViewRefusedDataShouldFail) { 185 IN_PROC_BROWSER_TEST_P(AppViewTest, TestAppViewRefusedDataShouldFail) {
186 RunTest("testAppViewRefusedDataShouldFail", 186 RunTest("testAppViewRefusedDataShouldFail",
187 "app_view/apitest", 187 "app_view/apitest",
188 "app_view/apitest/skeleton"); 188 "app_view/apitest/skeleton");
189 } 189 }
190 190
191 #if defined(OS_WIN) 191 #if defined(OS_WIN) || defined(OS_CHROMEOS)
192 #define MAYBE_TestAppViewWithUndefinedDataShouldSucceed \ 192 #define MAYBE_TestAppViewWithUndefinedDataShouldSucceed \
193 DISABLED_TestAppViewWithUndefinedDataShouldSucceed 193 DISABLED_TestAppViewWithUndefinedDataShouldSucceed
194 #else 194 #else
195 #define MAYBE_TestAppViewWithUndefinedDataShouldSucceed \ 195 #define MAYBE_TestAppViewWithUndefinedDataShouldSucceed \
196 TestAppViewWithUndefinedDataShouldSucceed 196 TestAppViewWithUndefinedDataShouldSucceed
197 #endif 197 #endif
198 // Tests that <appview> is able to navigate to another installed app. 198 // Tests that <appview> is able to navigate to another installed app.
199 IN_PROC_BROWSER_TEST_P(AppViewTest, 199 IN_PROC_BROWSER_TEST_P(AppViewTest,
200 MAYBE_TestAppViewWithUndefinedDataShouldSucceed) { 200 MAYBE_TestAppViewWithUndefinedDataShouldSucceed) {
201 RunTest("testAppViewWithUndefinedDataShouldSucceed", 201 RunTest("testAppViewWithUndefinedDataShouldSucceed",
202 "app_view/apitest", 202 "app_view/apitest",
203 "app_view/apitest/skeleton"); 203 "app_view/apitest/skeleton");
204 } 204 }
205 205
206 } // namespace extensions 206 } // namespace extensions
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698