1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_COMPANION_TEXT_FINDER_TEXT_FINDER_MANAGER_BASE_TEST_H_
#define CHROME_BROWSER_COMPANION_TEXT_FINDER_TEXT_FINDER_MANAGER_BASE_TEST_H_
#include <memory>
#include <vector>
#include "base/test/scoped_feature_list.h"
#include "chrome/browser/companion/text_finder/text_finder_manager.h"
#include "content/public/browser/browser_context.h"
#include "content/public/browser/web_contents.h"
#include "content/public/test/test_renderer_host.h"
#include "mojo/public/cpp/bindings/receiver.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "third_party/blink/public/mojom/annotation/annotation.mojom.h"
namespace companion {
// Mock implementation of the renderer's AnnotationAgentContainer interface.
class MockAnnotationAgentContainer
: public blink::mojom::AnnotationAgentContainer {
public:
MockAnnotationAgentContainer();
~MockAnnotationAgentContainer() override;
// blink::mojom::AnnotationAgentContainer
MOCK_METHOD5(CreateAgent,
void(mojo::PendingRemote<blink::mojom::AnnotationAgentHost>,
mojo::PendingReceiver<blink::mojom::AnnotationAgent>,
blink::mojom::AnnotationType,
blink::mojom::SelectorPtr,
std::optional<int> /*search_range_start_node_id*/));
MOCK_METHOD2(CreateAgentFromSelection,
void(blink::mojom::AnnotationType,
CreateAgentFromSelectionCallback));
void RemoveAgentsOfType(blink::mojom::AnnotationType) override {
NOTREACHED();
}
void MockCreateAgent(
mojo::PendingRemote<blink::mojom::AnnotationAgentHost> host_remote,
mojo::PendingReceiver<blink::mojom::AnnotationAgent> agent_receiver,
blink::mojom::AnnotationType type,
const std::string& serialized_selector);
void Bind(mojo::ScopedMessagePipeHandle handle);
bool is_bound() const { return is_bound_; }
private:
bool is_bound_ = false;
mojo::Receiver<blink::mojom::AnnotationAgentContainer> receiver_{this};
};
// A base test harness for `TextFinderManager` unit tests. Exposes methods to
// create a new `TextFinderManager`, and attach it to mock pages.
class TextFinderManagerBaseTest : public content::RenderViewHostTestHarness {
public:
TextFinderManagerBaseTest();
~TextFinderManagerBaseTest() override;
protected:
// Implements `content::RenderViewHostTestHarness`.
void SetUp() override;
void TearDown() override;
std::unique_ptr<content::BrowserContext> CreateBrowserContext() override;
// Creates a new TextFinderManager attached to mock pages, and bind its
// `annotation_agent_container_` to `mock_container`.
TextFinderManager* CreateTextFinderManagerForTest(
MockAnnotationAgentContainer* mock_container);
std::vector<std::unique_ptr<content::WebContents>> web_contents_list_;
};
} // namespace companion
#endif // CHROME_BROWSER_COMPANION_TEXT_FINDER_TEXT_FINDER_MANAGER_BASE_TEST_H_
|