OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2009 The Chromium Authos. 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 "app/sql/connection.h" |
| 6 #include "app/sql/statement.h" |
| 7 #include "base/string_util.h" |
| 8 #include "testing/gtest/include/gtest/gtest.h" |
| 9 #include "webkit/database/quota_table.h" |
| 10 |
| 11 namespace { |
| 12 |
| 13 class TestErrorDelegate : public sql::ErrorDelegate { |
| 14 public: |
| 15 virtual ~TestErrorDelegate() { } |
| 16 virtual int OnError( |
| 17 int error, sql::Connection* connection, sql::Statement* stmt) { |
| 18 return error; |
| 19 } |
| 20 }; |
| 21 |
| 22 } // namespace |
| 23 |
| 24 namespace webkit_database { |
| 25 |
| 26 static bool QuotaTableIsEmpty(sql::Connection* db) { |
| 27 sql::Statement statement(db->GetCachedStatement( |
| 28 SQL_FROM_HERE, "SELECT COUNT(*) FROM Quota")); |
| 29 return (statement.is_valid() && statement.Step() && !statement.ColumnInt(0)); |
| 30 } |
| 31 |
| 32 TEST(QuotaTableTest, TestIt) { |
| 33 // Initialize the 'Quota' table. |
| 34 sql::Connection db; |
| 35 |
| 36 // Set an error delegate that will make all operations return false on error. |
| 37 scoped_refptr<TestErrorDelegate> error_delegate(new TestErrorDelegate()); |
| 38 db.set_error_delegate(error_delegate); |
| 39 |
| 40 // Initialize the temp dir and the 'Databases' table. |
| 41 EXPECT_TRUE(db.OpenInMemory()); |
| 42 QuotaTable quota_table(&db); |
| 43 EXPECT_TRUE(quota_table.Init()); |
| 44 |
| 45 // The 'Quota' table should be empty. |
| 46 EXPECT_TRUE(QuotaTableIsEmpty(&db)); |
| 47 |
| 48 // Set and check the quota for a new origin. |
| 49 string16 origin = ASCIIToUTF16("origin"); |
| 50 EXPECT_TRUE(quota_table.SetOriginQuota(origin, 1000)); |
| 51 EXPECT_EQ(1000, quota_table.GetOriginQuota(origin)); |
| 52 |
| 53 // Reset and check the quota for the same origin. |
| 54 EXPECT_TRUE(quota_table.SetOriginQuota(origin, 2000)); |
| 55 EXPECT_EQ(2000, quota_table.GetOriginQuota(origin)); |
| 56 |
| 57 // Clear the quota for an origin |
| 58 EXPECT_TRUE(quota_table.ClearOriginQuota(origin)); |
| 59 EXPECT_TRUE(quota_table.GetOriginQuota(origin) < 0); |
| 60 |
| 61 // Check that there's no quota set for unknown origins. |
| 62 EXPECT_TRUE(quota_table.GetOriginQuota(ASCIIToUTF16("unknown_origin")) < 0); |
| 63 } |
| 64 |
| 65 } // namespace webkit_database |
OLD | NEW |