OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * | 7 * |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 | 43 |
44 using namespace WebCore; | 44 using namespace WebCore; |
45 using namespace WebKit; | 45 using namespace WebKit; |
46 | 46 |
47 namespace { | 47 namespace { |
48 | 48 |
49 PassRefPtr<IDBKey> checkKeyFromValueAndKeyPathInternal(const ScriptValue& value,
const String& keyPath) | 49 PassRefPtr<IDBKey> checkKeyFromValueAndKeyPathInternal(const ScriptValue& value,
const String& keyPath) |
50 { | 50 { |
51 IDBKeyPath idbKeyPath(keyPath); | 51 IDBKeyPath idbKeyPath(keyPath); |
52 EXPECT_TRUE(idbKeyPath.isValid()); | 52 EXPECT_TRUE(idbKeyPath.isValid()); |
53 | 53 |
54 return createIDBKeyFromScriptValueAndKeyPath(0, value, idbKeyPath); | 54 return createIDBKeyFromScriptValueAndKeyPath(0, value, idbKeyPath); |
55 } | 55 } |
56 | 56 |
57 void checkKeyPathNullValue(const ScriptValue& value, const String& keyPath) | 57 void checkKeyPathNullValue(const ScriptValue& value, const String& keyPath) |
58 { | 58 { |
59 RefPtr<IDBKey> idbKey = checkKeyFromValueAndKeyPathInternal(value, keyPath); | 59 RefPtr<IDBKey> idbKey = checkKeyFromValueAndKeyPathInternal(value, keyPath); |
60 ASSERT_FALSE(idbKey.get()); | 60 ASSERT_FALSE(idbKey.get()); |
61 } | 61 } |
62 | 62 |
63 bool injectKey(PassRefPtr<IDBKey> key, ScriptValue& value, const String& keyPath
) | 63 bool injectKey(PassRefPtr<IDBKey> key, ScriptValue& value, const String& keyPath
) |
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 checkInjection(IDBKey::createDate(4567), scriptObject, "foo.baz"); | 202 checkInjection(IDBKey::createDate(4567), scriptObject, "foo.baz"); |
203 checkInjection(IDBKey::createDate(4567), scriptObject, "bar"); | 203 checkInjection(IDBKey::createDate(4567), scriptObject, "bar"); |
204 checkInjection(IDBKey::createArray(IDBKey::KeyArray()), scriptObject, "foo.b
az"); | 204 checkInjection(IDBKey::createArray(IDBKey::KeyArray()), scriptObject, "foo.b
az"); |
205 checkInjection(IDBKey::createArray(IDBKey::KeyArray()), scriptObject, "bar")
; | 205 checkInjection(IDBKey::createArray(IDBKey::KeyArray()), scriptObject, "bar")
; |
206 | 206 |
207 checkInjectionFails(IDBKey::createString("zoo"), scriptObject, "foo.bar.baz"
); | 207 checkInjectionFails(IDBKey::createString("zoo"), scriptObject, "foo.bar.baz"
); |
208 checkInjection(IDBKey::createString("zoo"), scriptObject, "foo.xyz.foo"); | 208 checkInjection(IDBKey::createString("zoo"), scriptObject, "foo.xyz.foo"); |
209 } | 209 } |
210 | 210 |
211 } // namespace | 211 } // namespace |
OLD | NEW |