| // Copyright 2013 The Chromium Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #include "android_webview/browser/aw_form_database_service.h" |
| |
| #include <memory> |
| #include <vector> |
| |
| #include "base/android/jni_android.h" |
| #include "base/files/scoped_temp_dir.h" |
| #include "base/memory/raw_ptr.h" |
| #include "base/strings/utf_string_conversions.h" |
| #include "components/autofill/core/browser/webdata/autofill_webdata_service.h" |
| #include "components/autofill/core/common/form_field_data.h" |
| #include "content/public/test/browser_task_environment.h" |
| #include "testing/gtest/include/gtest/gtest.h" |
| |
| using autofill::AutofillWebDataService; |
| using autofill::FormFieldData; |
| using base::android::AttachCurrentThread; |
| using testing::Test; |
| |
| namespace android_webview { |
| |
| class AwFormDatabaseServiceTest : public Test { |
| public: |
| AwFormDatabaseServiceTest() {} |
| |
| protected: |
| void SetUp() override { |
| ASSERT_TRUE(temp_dir_.CreateUniqueTempDir()); |
| env_ = AttachCurrentThread(); |
| ASSERT_TRUE(env_); |
| |
| service_ = std::make_unique<AwFormDatabaseService>(temp_dir_.GetPath()); |
| } |
| |
| void TearDown() override { |
| service_->Shutdown(); |
| task_environment_.RunUntilIdle(); |
| } |
| |
| content::BrowserTaskEnvironment task_environment_; |
| // The path to the temporary directory used for the test operations. |
| base::ScopedTempDir temp_dir_; |
| raw_ptr<JNIEnv> env_; |
| std::unique_ptr<AwFormDatabaseService> service_; |
| }; |
| |
| // TODO(https://crbug.com/1472844): Fix flakes. |
| TEST_F(AwFormDatabaseServiceTest, DISABLED_HasAndClearFormData) { |
| EXPECT_FALSE(service_->HasFormData()); |
| std::vector<FormFieldData> fields; |
| FormFieldData field; |
| field.name = u"foo"; |
| field.value = u"bar"; |
| fields.push_back(field); |
| service_->get_autofill_webdata_service()->AddFormFields(fields); |
| EXPECT_TRUE(service_->HasFormData()); |
| service_->ClearFormData(); |
| EXPECT_FALSE(service_->HasFormData()); |
| } |
| |
| } // namespace android_webview |