/* * Copyright (C) 2011 Google Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "config.h" #include "Document.h" #include "Frame.h" #include "FrameTestHelpers.h" #include "IDBBindingUtilities.h" #include "IDBKey.h" #include "IDBKeyPath.h" #include "V8Binding.h" #include "V8PerIsolateData.h" #include "V8Utilities.h" #include "WebFrame.h" #include "WebFrameImpl.h" #include "WebView.h" #include "WorldContextHandle.h" #include #include #if ENABLE(INDEXED_DATABASE) using namespace WebCore; using namespace WebKit; namespace { PassRefPtr checkKeyFromValueAndKeyPathInternal(const ScriptValue& value, const String& keyPath) { IDBKeyPath idbKeyPath(keyPath); EXPECT_TRUE(idbKeyPath.isValid()); return createIDBKeyFromScriptValueAndKeyPath(0, value, idbKeyPath); } void checkKeyPathNullValue(const ScriptValue& value, const String& keyPath) { RefPtr idbKey = checkKeyFromValueAndKeyPathInternal(value, keyPath); ASSERT_FALSE(idbKey.get()); } bool injectKey(PassRefPtr key, ScriptValue& value, const String& keyPath) { IDBKeyPath idbKeyPath(keyPath); EXPECT_TRUE(idbKeyPath.isValid()); return injectIDBKeyIntoScriptValue(0, key, value, idbKeyPath); } void checkInjection(PassRefPtr prpKey, ScriptValue& value, const String& keyPath) { RefPtr key = prpKey; bool result = injectKey(key, value, keyPath); ASSERT_TRUE(result); RefPtr extractedKey = checkKeyFromValueAndKeyPathInternal(value, keyPath); EXPECT_TRUE(key->isEqual(extractedKey.get())); } void checkInjectionFails(PassRefPtr key, ScriptValue& value, const String& keyPath) { EXPECT_FALSE(injectKey(key, value, keyPath)); } void checkKeyPathStringValue(const ScriptValue& value, const String& keyPath, const String& expected) { RefPtr idbKey = checkKeyFromValueAndKeyPathInternal(value, keyPath); ASSERT_TRUE(idbKey.get()); ASSERT_EQ(IDBKey::StringType, idbKey->type()); ASSERT_TRUE(expected == idbKey->string()); } void checkKeyPathNumberValue(const ScriptValue& value, const String& keyPath, int expected) { RefPtr idbKey = checkKeyFromValueAndKeyPathInternal(value, keyPath); ASSERT_TRUE(idbKey.get()); ASSERT_EQ(IDBKey::NumberType, idbKey->type()); ASSERT_TRUE(expected == idbKey->number()); } class IDBKeyFromValueAndKeyPathTest : public testing::Test { public: IDBKeyFromValueAndKeyPathTest() : m_webView(0) { } void SetUp() OVERRIDE { m_webView = FrameTestHelpers::createWebViewAndLoad("about:blank"); m_webView->setFocus(true); } void TearDown() OVERRIDE { m_webView->close(); } v8::Handle context() { return static_cast(m_webView->mainFrame())->frame()->script()->mainWorldContext(); } private: WebView* m_webView; }; TEST_F(IDBKeyFromValueAndKeyPathTest, TopLevelPropertyStringValue) { v8::HandleScope handleScope; v8::Context::Scope scope(context()); v8::Local object = v8::Object::New(); object->Set(v8::String::New("foo"), v8::String::New("zoo")); ScriptValue scriptValue(object); checkKeyPathStringValue(scriptValue, "foo", "zoo"); checkKeyPathNullValue(scriptValue, "bar"); } TEST_F(IDBKeyFromValueAndKeyPathTest, TopLevelPropertyNumberValue) { v8::HandleScope handleScope; v8::Context::Scope scope(context()); v8::Local object = v8::Object::New(); object->Set(v8::String::New("foo"), v8::Number::New(456)); ScriptValue scriptValue(object); checkKeyPathNumberValue(scriptValue, "foo", 456); checkKeyPathNullValue(scriptValue, "bar"); } TEST_F(IDBKeyFromValueAndKeyPathTest, SubProperty) { v8::HandleScope handleScope; v8::Context::Scope scope(context()); v8::Local object = v8::Object::New(); v8::Local subProperty = v8::Object::New(); subProperty->Set(v8::String::New("bar"), v8::String::New("zee")); object->Set(v8::String::New("foo"), subProperty); ScriptValue scriptValue(object); checkKeyPathStringValue(scriptValue, "foo.bar", "zee"); checkKeyPathNullValue(scriptValue, "bar"); } class InjectIDBKeyTest : public IDBKeyFromValueAndKeyPathTest { }; TEST_F(InjectIDBKeyTest, TopLevelPropertyStringValue) { v8::HandleScope handleScope; v8::Context::Scope scope(context()); v8::Local object = v8::Object::New(); object->Set(v8::String::New("foo"), v8::String::New("zoo")); ScriptValue foozoo(object); checkInjection(IDBKey::createString("myNewKey"), foozoo, "bar"); checkInjection(IDBKey::createNumber(1234), foozoo, "bar"); checkInjectionFails(IDBKey::createString("key"), foozoo, "foo.bar"); } TEST_F(InjectIDBKeyTest, SubProperty) { v8::HandleScope handleScope; v8::Context::Scope scope(context()); v8::Local object = v8::Object::New(); v8::Local subProperty = v8::Object::New(); subProperty->Set(v8::String::New("bar"), v8::String::New("zee")); object->Set(v8::String::New("foo"), subProperty); ScriptValue scriptObject(object); checkInjection(IDBKey::createString("myNewKey"), scriptObject, "foo.baz"); checkInjection(IDBKey::createNumber(789), scriptObject, "foo.baz"); checkInjection(IDBKey::createDate(4567), scriptObject, "foo.baz"); checkInjection(IDBKey::createDate(4567), scriptObject, "bar"); checkInjection(IDBKey::createArray(IDBKey::KeyArray()), scriptObject, "foo.baz"); checkInjection(IDBKey::createArray(IDBKey::KeyArray()), scriptObject, "bar"); checkInjectionFails(IDBKey::createString("zoo"), scriptObject, "foo.bar.baz"); checkInjection(IDBKey::createString("zoo"), scriptObject, "foo.xyz.foo"); } } // namespace #endif // ENABLE(INDEXED_DATABASE)