summaryrefslogtreecommitdiffstats
path: root/chrome/renderer/extensions/json_schema_unittest.cc
diff options
context:
space:
mode:
authoraa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-14 07:07:18 +0000
committeraa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-14 07:07:18 +0000
commit1b6cdc850d7eb2b4a19f5a51dca2ad57c9a9622f (patch)
tree2a26d85ad15485ccf6a7e48c1def21803e9710a2 /chrome/renderer/extensions/json_schema_unittest.cc
parent83c249924ea14cc9b9c6628c2e93a5d09c474c75 (diff)
downloadchromium_src-1b6cdc850d7eb2b4a19f5a51dca2ad57c9a9622f.zip
chromium_src-1b6cdc850d7eb2b4a19f5a51dca2ad57c9a9622f.tar.gz
chromium_src-1b6cdc850d7eb2b4a19f5a51dca2ad57c9a9622f.tar.bz2
Revert "Add JsonSchema-based validation for the tab APIs."
This reverts commit 4f47758f5238f2e5b05d9de18f390bfe2aeb6980. Revert "TBR: Fix unit tests, line endings." This reverts commit 257fa01e20c46c68dce1c5992b75c64686cb1a66. Review URL: http://codereview.chromium.org/67122 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@13652 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer/extensions/json_schema_unittest.cc')
-rwxr-xr-xchrome/renderer/extensions/json_schema_unittest.cc84
1 files changed, 0 insertions, 84 deletions
diff --git a/chrome/renderer/extensions/json_schema_unittest.cc b/chrome/renderer/extensions/json_schema_unittest.cc
deleted file mode 100755
index 7df624d..0000000
--- a/chrome/renderer/extensions/json_schema_unittest.cc
+++ /dev/null
@@ -1,84 +0,0 @@
-// Copyright (c) 2009 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 "base/file_util.h"
-#include "base/path_service.h"
-#include "base/string_util.h"
-#include "chrome/common/chrome_paths.h"
-#include "chrome/common/resource_bundle.h"
-#include "chrome/test/v8_unit_test.h"
-#include "testing/gtest/include/gtest/gtest.h"
-
-#include "grit/renderer_resources.h"
-
-// TODO(port)
-#if defined(OS_WIN)
-
-static const char kJsonSchema[] = "json_schema.js";
-static const char kJsonSchemaTest[] = "json_schema_test.js";
-
-class JsonSchemaTest : public V8UnitTest {
- public:
- JsonSchemaTest() {}
-
- virtual void SetUp() {
- V8UnitTest::SetUp();
-
- // Add the json schema code to the context.
- StringPiece js = ResourceBundle::GetSharedInstance().GetRawDataResource(
- IDR_JSON_SCHEMA_JS);
- ExecuteScriptInContext(js, kJsonSchema);
-
- // Add the test functions to the context.
- std::wstring test_js_file_path;
- ASSERT_TRUE(PathService::Get(chrome::DIR_TEST_DATA, &test_js_file_path));
- file_util::AppendToPath(&test_js_file_path, L"extensions");
- file_util::AppendToPath(&test_js_file_path, UTF8ToWide(kJsonSchemaTest));
- std::string test_js;
- ASSERT_TRUE(file_util::ReadFileToString(test_js_file_path, &test_js));
- ExecuteScriptInContext(test_js, kJsonSchemaTest);
- }
-};
-
-TEST_F(JsonSchemaTest, TestFormatError) {
- TestFunction("testFormatError");
-}
-
-TEST_F(JsonSchemaTest, TestComplex) {
- TestFunction("testComplex");
-}
-
-TEST_F(JsonSchemaTest, TestEnum) {
- TestFunction("testEnum");
-}
-
-TEST_F(JsonSchemaTest, TestExtends) {
- TestFunction("testExtends");
-}
-
-TEST_F(JsonSchemaTest, TestObject) {
- TestFunction("testObject");
-}
-
-TEST_F(JsonSchemaTest, TestArrayTuple) {
- TestFunction("testArrayTuple");
-}
-
-TEST_F(JsonSchemaTest, TestArrayNonTuple) {
- TestFunction("testArrayNonTuple");
-}
-
-TEST_F(JsonSchemaTest, TestString) {
- TestFunction("testString");
-}
-
-TEST_F(JsonSchemaTest, TestNumber) {
- TestFunction("testNumber");
-}
-
-TEST_F(JsonSchemaTest, TestType) {
- TestFunction("testType");
-}
-
-#endif // #if defined(OSWIN)