blob: ea4795edfb57ed70f041c1e5f09e26f8babfd658 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/autofill/core/browser/test_autofill_download_manager.h"
#include "components/autofill/core/browser/form_structure.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace autofill {
TestAutofillDownloadManager::TestAutofillDownloadManager(
AutofillDriver* driver,
AutofillDownloadManager::Observer* observer)
: AutofillDownloadManager(driver, observer) {}
TestAutofillDownloadManager::~TestAutofillDownloadManager() {}
bool TestAutofillDownloadManager::StartQueryRequest(
const std::vector<FormStructure*>& forms) {
last_queried_forms_ = forms;
return true;
}
void TestAutofillDownloadManager::VerifyLastQueriedForms(
const std::vector<FormData>& expected_forms) {
ASSERT_EQ(expected_forms.size(), last_queried_forms_.size());
for (size_t i = 0; i < expected_forms.size(); ++i) {
EXPECT_EQ(*last_queried_forms_[i], expected_forms[i]);
}
}
} // namespace autofill