Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Delta Between Two Patch Sets: test/Notification.cpp

Issue 29539858: Issue 5506 - Make the notification test work. (Closed) Base URL: https://hg.adblockplus.org/libadblockplus/
Left Patch Set: Address review comments. Created Sept. 12, 2017, 12:53 p.m.
Right Patch Set: Removed dead code from previous patch Created Sept. 12, 2017, 3:50 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « no previous file | no next file » | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 /* 1 /*
2 * This file is part of Adblock Plus <https://adblockplus.org/>, 2 * This file is part of Adblock Plus <https://adblockplus.org/>,
3 * Copyright (C) 2006-present eyeo GmbH 3 * Copyright (C) 2006-present eyeo GmbH
4 * 4 *
5 * Adblock Plus is free software: you can redistribute it and/or modify 5 * Adblock Plus is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 3 as 6 * it under the terms of the GNU General Public License version 3 as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
8 * 8 *
9 * Adblock Plus is distributed in the hope that it will be useful, 9 * Adblock Plus is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details. 12 * GNU General Public License for more details.
13 * 13 *
14 * You should have received a copy of the GNU General Public License 14 * You should have received a copy of the GNU General Public License
15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
16 */ 16 */
17 17
18 #include <iostream>
19 #include <AdblockPlus/DefaultLogSystem.h>
sergei 2017/09/12 13:34:09 These headers are still not required.
hub 2017/09/12 15:51:10 Done.
20 #include "BaseJsTest.h" 18 #include "BaseJsTest.h"
21 19
22 using namespace AdblockPlus; 20 using namespace AdblockPlus;
23 21
24 namespace 22 namespace
25 { 23 {
26 class NotificationTest : public BaseJsTest 24 class NotificationTest : public BaseJsTest
27 { 25 {
28 protected: 26 protected:
29 void SetUp() 27 void SetUp()
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 serverResponse.responseText = responseText; 78 serverResponse.responseText = responseText;
81 getCallback(serverResponse); 79 getCallback(serverResponse);
82 } 80 }
83 }; 81 };
84 82
85 // To run this test one needs to set INITIAL_DELAY to about 2000 msec 83 // To run this test one needs to set INITIAL_DELAY to about 2000 msec
86 // in notification.js. 84 // in notification.js.
87 class NotificationMockWebRequestTest : public BaseJsTest 85 class NotificationMockWebRequestTest : public BaseJsTest
88 { 86 {
89 protected: 87 protected:
90 AdblockPlus::Sync sync; 88 bool isNotificationCallbackCalled;
89 DelayedTimer::SharedTasks timerTasks;
91 void SetUp() 90 void SetUp()
92 { 91 {
92 isNotificationCallbackCalled = false;
93 const char* responseJsonText = "{" 93 const char* responseJsonText = "{"
94 "\"notifications\": [{" 94 "\"notifications\": [{"
95 "\"id\": \"some id\"," 95 "\"id\": \"some id\","
96 "\"type\": \"information\"," 96 "\"type\": \"information\","
97 "\"message\": {" 97 "\"message\": {"
98 "\"en-US\": \"message\"" 98 "\"en-US\": \"message\""
99 "}," 99 "},"
100 "\"title\": \"Title\"" 100 "\"title\": \"Title\""
101 "}]" 101 "}]"
102 "}"; 102 "}";
103 103
104 LazyFileSystem* fileSystem; 104 LazyFileSystem* fileSystem;
105 AdblockPlus::Platform::CreationParameters platformParams; 105 ThrowingPlatformCreationParameters platformParams;
106 platformParams.logSystem.reset(new ThrowingLogSystem()); 106 platformParams.timer = DelayedTimer::New(timerTasks);
sergei 2017/09/12 13:34:09 These two lines can be replaced by original `Throw
hub 2017/09/12 15:51:10 Done.
107 platformParams.timer.reset(new ManualTimer());
108 platformParams.fileSystem.reset(fileSystem = new LazyFileSystem()); 107 platformParams.fileSystem.reset(fileSystem = new LazyFileSystem());
109 platformParams.webRequest.reset(new MockWebRequest(responseJsonText)); 108 platformParams.webRequest.reset(new MockWebRequest(responseJsonText));
110 platform.reset(new Platform(std::move(platformParams))); 109 platform.reset(new Platform(std::move(platformParams)));
111 110
112 CreateFilterEngine(*fileSystem, *platform); 111 CreateFilterEngine(*fileSystem, *platform);
113 auto& filterEngine = platform->GetFilterEngine(); 112 auto& filterEngine = platform->GetFilterEngine();
114 filterEngine.SetShowNotificationCallback( 113 filterEngine.SetShowNotificationCallback(
115 [this](Notification&& notification) { 114 [this](Notification&& notification) {
116 sync.Set(); 115 isNotificationCallbackCalled = true;
117 EXPECT_EQ(NotificationType::NOTIFICATION_TYPE_INFORMATION, notificatio n.GetType()); 116 EXPECT_EQ(NotificationType::NOTIFICATION_TYPE_INFORMATION, notificatio n.GetType());
118 EXPECT_EQ("Title", notification.GetTexts().title); 117 EXPECT_EQ("Title", notification.GetTexts().title);
119 EXPECT_EQ("message", notification.GetTexts().message); 118 EXPECT_EQ("message", notification.GetTexts().message);
120 notification.MarkAsShown(); 119 notification.MarkAsShown();
121 }); 120 });
122 } 121 }
123 }; 122 };
124 } 123 }
125 124
126 TEST_F(NotificationTest, NoNotifications) 125 TEST_F(NotificationTest, NoNotifications)
127 { 126 {
128 EXPECT_FALSE(PeekNotification()); 127 EXPECT_FALSE(PeekNotification());
129 } 128 }
130 129
131 TEST_F(NotificationMockWebRequestTest, SingleNotification) 130 TEST_F(NotificationMockWebRequestTest, SingleNotification)
132 { 131 {
133 auto& filterEngine = platform->GetFilterEngine(); 132 auto& filterEngine = platform->GetFilterEngine();
134 static_cast<ManualTimer&>(platform->GetTimer()).runPending(); 133 auto ii = timerTasks->begin();
135 filterEngine.ShowNextNotification(); 134 while(!isNotificationCallbackCalled && ii != timerTasks->end()) {
136 EXPECT_TRUE(sync.WaitFor(std::chrono::seconds(4))); 135 ii->callback();
136 ii = timerTasks->erase(ii);
137 filterEngine.ShowNextNotification();
138 }
139 EXPECT_TRUE(isNotificationCallbackCalled);
137 } 140 }
138 141
139 TEST_F(NotificationTest, AddNotification) 142 TEST_F(NotificationTest, AddNotification)
140 { 143 {
141 AddNotification("{" 144 AddNotification("{"
142 "type: 'critical'," 145 "type: 'critical',"
143 "title: 'testTitle'," 146 "title: 'testTitle',"
144 "message: 'testMessage'," 147 "message: 'testMessage',"
145 "}"); 148 "}");
146 auto notification = PeekNotification(); 149 auto notification = PeekNotification();
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 TEST_F(NotificationTest, Links) 197 TEST_F(NotificationTest, Links)
195 { 198 {
196 AddNotification("{ id: 'id', links: ['link1', 'link2'] }"); 199 AddNotification("{ id: 'id', links: ['link1', 'link2'] }");
197 auto notification = PeekNotification(); 200 auto notification = PeekNotification();
198 ASSERT_TRUE(notification); 201 ASSERT_TRUE(notification);
199 std::vector<std::string> notificationLinks = notification->GetLinks(); 202 std::vector<std::string> notificationLinks = notification->GetLinks();
200 ASSERT_EQ(2u, notificationLinks.size()); 203 ASSERT_EQ(2u, notificationLinks.size());
201 EXPECT_EQ("link1", notificationLinks[0]); 204 EXPECT_EQ("link1", notificationLinks[0]);
202 EXPECT_EQ("link2", notificationLinks[1]); 205 EXPECT_EQ("link2", notificationLinks[1]);
203 } 206 }
LEFTRIGHT
« no previous file | no next file » | Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Toggle Comments ('s')

Powered by Google App Engine
This is Rietveld