OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef COMPONENTS_DOM_DISTILLER_CORE_FAKE_DISTILLER_H_ | 5 #ifndef COMPONENTS_DOM_DISTILLER_CORE_FAKE_DISTILLER_H_ |
6 #define COMPONENTS_DOM_DISTILLER_CORE_FAKE_DISTILLER_H_ | 6 #define COMPONENTS_DOM_DISTILLER_CORE_FAKE_DISTILLER_H_ |
7 | 7 |
8 #include "base/callback.h" | 8 #include "base/callback.h" |
9 #include "components/dom_distiller/core/article_distillation_update.h" | 9 #include "components/dom_distiller/core/article_distillation_update.h" |
10 #include "components/dom_distiller/core/article_entry.h" | 10 #include "components/dom_distiller/core/article_entry.h" |
11 #include "components/dom_distiller/core/distiller.h" | 11 #include "components/dom_distiller/core/distiller.h" |
12 #include "testing/gmock/include/gmock/gmock.h" | 12 #include "testing/gmock/include/gmock/gmock.h" |
13 #include "url/gurl.h" | 13 #include "url/gurl.h" |
14 | 14 |
15 class GURL; | 15 class GURL; |
16 | 16 |
17 namespace dom_distiller { | 17 namespace dom_distiller { |
18 namespace test { | 18 namespace test { |
19 | 19 |
20 class MockDistillerFactory : public DistillerFactory { | 20 class MockDistillerFactory : public DistillerFactory { |
21 public: | 21 public: |
22 MockDistillerFactory(); | 22 MockDistillerFactory(); |
23 virtual ~MockDistillerFactory(); | 23 virtual ~MockDistillerFactory(); |
24 MOCK_METHOD0(CreateDistillerImpl, Distiller*()); | 24 MOCK_METHOD0(CreateDistillerImpl, Distiller*()); |
25 virtual scoped_ptr<Distiller> CreateDistillerForUrl( | 25 scoped_ptr<Distiller> CreateDistillerForUrl(const GURL& unused) override { |
26 const GURL& unused) override { | |
27 return scoped_ptr<Distiller>(CreateDistillerImpl()); | 26 return scoped_ptr<Distiller>(CreateDistillerImpl()); |
28 } | 27 } |
29 }; | 28 }; |
30 | 29 |
31 class FakeDistiller : public Distiller { | 30 class FakeDistiller : public Distiller { |
32 public: | 31 public: |
33 // If execute_callback is true, when DistillPage is called, a task will | 32 // If execute_callback is true, when DistillPage is called, a task will |
34 // immediately be posted to execute the callback with a simple | 33 // immediately be posted to execute the callback with a simple |
35 // DistilledArticleProto. | 34 // DistilledArticleProto. |
36 explicit FakeDistiller(bool execute_callback); | 35 explicit FakeDistiller(bool execute_callback); |
37 // TODO(yfriedman): Drop execute_callback from this and give the option of | 36 // TODO(yfriedman): Drop execute_callback from this and give the option of |
38 // "auto-distilling" or calling the provided closure. | 37 // "auto-distilling" or calling the provided closure. |
39 explicit FakeDistiller(bool execute_callback, | 38 explicit FakeDistiller(bool execute_callback, |
40 const base::Closure& distillation_initiated_callback); | 39 const base::Closure& distillation_initiated_callback); |
41 virtual ~FakeDistiller(); | 40 ~FakeDistiller() override; |
42 MOCK_METHOD0(Die, void()); | 41 MOCK_METHOD0(Die, void()); |
43 | 42 |
44 virtual void DistillPage( | 43 void DistillPage(const GURL& url, |
45 const GURL& url, | 44 scoped_ptr<DistillerPage> distiller_page, |
46 scoped_ptr<DistillerPage> distiller_page, | 45 const DistillationFinishedCallback& article_callback, |
47 const DistillationFinishedCallback& article_callback, | 46 const DistillationUpdateCallback& page_callback) override; |
48 const DistillationUpdateCallback& page_callback) override; | |
49 | 47 |
50 void RunDistillerCallback(scoped_ptr<DistilledArticleProto> proto); | 48 void RunDistillerCallback(scoped_ptr<DistilledArticleProto> proto); |
51 void RunDistillerUpdateCallback(const ArticleDistillationUpdate& update); | 49 void RunDistillerUpdateCallback(const ArticleDistillationUpdate& update); |
52 | 50 |
53 GURL GetUrl() { return url_; } | 51 GURL GetUrl() { return url_; } |
54 | 52 |
55 DistillationFinishedCallback GetArticleCallback() { | 53 DistillationFinishedCallback GetArticleCallback() { |
56 return article_callback_; | 54 return article_callback_; |
57 } | 55 } |
58 | 56 |
59 private: | 57 private: |
60 void PostDistillerCallback(scoped_ptr<DistilledArticleProto> proto); | 58 void PostDistillerCallback(scoped_ptr<DistilledArticleProto> proto); |
61 void RunDistillerCallbackInternal(scoped_ptr<DistilledArticleProto> proto); | 59 void RunDistillerCallbackInternal(scoped_ptr<DistilledArticleProto> proto); |
62 | 60 |
63 bool execute_callback_; | 61 bool execute_callback_; |
64 GURL url_; | 62 GURL url_; |
65 DistillationFinishedCallback article_callback_; | 63 DistillationFinishedCallback article_callback_; |
66 DistillationUpdateCallback page_callback_; | 64 DistillationUpdateCallback page_callback_; |
67 bool destruction_allowed_; | 65 bool destruction_allowed_; |
68 // Used to notify when distillation is complete. | 66 // Used to notify when distillation is complete. |
69 base::Closure distillation_initiated_callback_; | 67 base::Closure distillation_initiated_callback_; |
70 }; | 68 }; |
71 | 69 |
72 } // namespace test | 70 } // namespace test |
73 } // namespace dom_distiller | 71 } // namespace dom_distiller |
74 | 72 |
75 #endif // COMPONENTS_DOM_DISTILLER_CORE_FAKE_DISTILLER_H_ | 73 #endif // COMPONENTS_DOM_DISTILLER_CORE_FAKE_DISTILLER_H_ |
OLD | NEW |