Home | History | Annotate | Download | only in browser
      1 // Copyright (c) 2013 The Chromium Authors. 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 <vector>
      6 
      7 #include "android_webview/browser/aw_form_database_service.h"
      8 #include "base/android/jni_android.h"
      9 #include "base/files/scoped_temp_dir.h"
     10 #include "base/memory/scoped_ptr.h"
     11 #include "base/message_loop/message_loop.h"
     12 #include "base/strings/utf_string_conversions.h"
     13 #include "components/autofill/core/browser/webdata/autofill_webdata_service.h"
     14 #include "components/autofill/core/common/form_field_data.h"
     15 #include "content/public/test/test_browser_thread.h"
     16 #include "testing/gtest/include/gtest/gtest.h"
     17 #include "ui/base/l10n/l10n_util_android.h"
     18 
     19 using autofill::AutofillWebDataService;
     20 using autofill::FormFieldData;
     21 using base::android::AttachCurrentThread;
     22 using content::BrowserThread;
     23 using testing::Test;
     24 
     25 namespace android_webview {
     26 
     27 class AwFormDatabaseServiceTest : public Test {
     28  public:
     29   AwFormDatabaseServiceTest()
     30       : ui_thread_(BrowserThread::UI, &message_loop_),
     31         db_thread_(BrowserThread::DB) {
     32     db_thread_.Start();
     33   }
     34 
     35  protected:
     36   virtual void SetUp() {
     37     ASSERT_TRUE(temp_dir_.CreateUniqueTempDir());
     38     env_ = AttachCurrentThread();
     39     ASSERT_TRUE(env_ != NULL);
     40     ASSERT_TRUE(l10n_util::RegisterLocalizationUtil(env_));
     41 
     42     service_.reset(new AwFormDatabaseService(temp_dir_.path()));
     43   }
     44 
     45   virtual void TearDown() {
     46     service_->Shutdown();
     47   }
     48 
     49   // The path to the temporary directory used for the test operations.
     50   base::ScopedTempDir temp_dir_;
     51   // A message loop for UI thread.
     52   base::MessageLoop message_loop_;
     53   content::TestBrowserThread ui_thread_;
     54   content::TestBrowserThread db_thread_;
     55   JNIEnv* env_;
     56 
     57   scoped_ptr<AwFormDatabaseService> service_;
     58 };
     59 
     60 // Disabling this test until we know why it crashes.
     61 // TODO(sgurun): See http://crbug.com/287726 for details.
     62 TEST_F(AwFormDatabaseServiceTest, DISABLED_HasAndClearFormData) {
     63   EXPECT_FALSE(service_->HasFormData());
     64   std::vector<FormFieldData> fields;
     65   FormFieldData field;
     66   field.name = base::ASCIIToUTF16("foo");
     67   field.value = base::ASCIIToUTF16("bar");
     68   fields.push_back(field);
     69   service_->get_autofill_webdata_service()->AddFormFields(fields);
     70   EXPECT_TRUE(service_->HasFormData());
     71   service_->ClearFormData();
     72   EXPECT_FALSE(service_->HasFormData());
     73 }
     74 
     75 }  // namespace android_webview
     76