summaryrefslogtreecommitdiffstats
path: root/src/plugins/capabilities/test/SubscriberForwarderTest.cpp
blob: c3d72de1d506faa4a5c7002659d9b037ea0c375c (plain)
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
/*
 * Copyright 2018-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License").
 * You may not use this file except in compliance with the License.
 * A copy of the License is located at
 *
 *     http://aws.amazon.com/apache2.0/
 *
 * or in the "license" file accompanying this file. This file is distributed
 * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
 * express or implied. See the License for the specific language governing
 * permissions and limitations under the License.
 */
#include <gtest/gtest.h>

#include "capabilities/core/include/SubscriberForwarder.h"

#include "test/common/ConsoleLogger.h"
#include "test/mocks/AFBApiMock.h"
#include "test/mocks/AFBEventMock.h"
#include "test/mocks/AFBRequestMock.h"
#include "test/mocks/CapabilityMock.h"

using namespace vshlcapabilities::common::interfaces;
using namespace vshlcapabilities::capabilities::core;
using namespace vshlcapabilities::test::common;

namespace vshlcapabilities {
namespace test {

class SubscriberForwarderTest : public ::testing::Test {
protected:
    void SetUp() override {
        mConsoleLogger = std::make_shared<ConsoleLogger>();
        mAfbApi = std::make_shared<::testing::StrictMock<AFBApiMock>>();

        mEventCreatorFn = [](const std::string& eventName) -> std::shared_ptr<IAFBApi::IAFBEvent> {
            std::shared_ptr<AFBEventMock> mockEvent(new ::testing::StrictMock<AFBEventMock>());
            mockEvent->setName(eventName);
            return mockEvent;
        };
    }

    std::shared_ptr<SubscriberForwarder> createSubscriberForwarder(
        std::shared_ptr<::testing::StrictMock<CapabilityMock>> capability) {
        EXPECT_CALL(*capability, getUpstreamMessages()).Times(1);
        EXPECT_CALL(*capability, getDownstreamMessages()).Times(1);

        return SubscriberForwarder::create(mConsoleLogger, mAfbApi, capability);
    }

    std::shared_ptr<::testing::StrictMock<AFBApiMock>> mAfbApi;
    std::shared_ptr<ConsoleLogger> mConsoleLogger;
    std::function<std::shared_ptr<IAFBApi::IAFBEvent>(const std::string&)> mEventCreatorFn;
    std::shared_ptr<::testing::StrictMock<AFBEventMock>> mAfbEventMock;
};

TEST_F(SubscriberForwarderTest, failsInitializationOnInvalidParams) {
    auto capability = std::make_shared<::testing::StrictMock<CapabilityMock>>();

    auto forwarder = SubscriberForwarder::create(mConsoleLogger, mAfbApi, nullptr);
    ASSERT_EQ(forwarder, nullptr);

    forwarder = SubscriberForwarder::create(mConsoleLogger, nullptr, capability);
    ASSERT_EQ(forwarder, nullptr);

    forwarder = SubscriberForwarder::create(nullptr, mAfbApi, capability);
    ASSERT_EQ(forwarder, nullptr);
}

TEST_F(SubscriberForwarderTest, initializesCorrectly) {
    auto capability = std::make_shared<::testing::StrictMock<CapabilityMock>>();
    auto forwarder = createSubscriberForwarder(capability);

    ASSERT_NE(forwarder, nullptr);
}

TEST_F(SubscriberForwarderTest, createsEventsOnInitialization) {
    ON_CALL(*mAfbApi, createEvent(::testing::_)).WillByDefault(::testing::Invoke(mEventCreatorFn));

    std::list<std::string> upstreamEvents({"up-ev1", "up-ev2"});
    std::list<std::string> downstreamEvents({"down-ev1", "down-ev2"});

    auto capability = std::make_shared<::testing::StrictMock<CapabilityMock>>();
    ON_CALL(*capability, getUpstreamMessages()).WillByDefault(::testing::Return(upstreamEvents));
    ON_CALL(*capability, getDownstreamMessages()).WillByDefault(::testing::Return(downstreamEvents));

    auto itCapability = upstreamEvents.begin();
    EXPECT_CALL(*mAfbApi, createEvent(*itCapability)).Times(1);
    itCapability++;
    EXPECT_CALL(*mAfbApi, createEvent(*itCapability)).Times(1);

    itCapability = downstreamEvents.begin();
    EXPECT_CALL(*mAfbApi, createEvent(*itCapability)).Times(1);
    itCapability++;
    EXPECT_CALL(*mAfbApi, createEvent(*itCapability)).Times(1);

    auto forwarder = createSubscriberForwarder(capability);
    ASSERT_NE(forwarder, nullptr);
}

TEST_F(SubscriberForwarderTest, canNotSubscribeToNonExistentEvents) {
    ON_CALL(*mAfbApi, createEvent(::testing::_)).WillByDefault(::testing::Invoke(mEventCreatorFn));
    EXPECT_CALL(*mAfbApi, createEvent(::testing::_)).Times(4);

    std::list<std::string> upstreamEvents({"up-ev1", "up-ev2"});
    std::list<std::string> downstreamEvents({"down-ev1", "down-ev2"});

    auto capability = std::make_shared<::testing::StrictMock<CapabilityMock>>();
    ON_CALL(*capability, getUpstreamMessages()).WillByDefault(::testing::Return(upstreamEvents));
    ON_CALL(*capability, getDownstreamMessages()).WillByDefault(::testing::Return(downstreamEvents));

    auto forwarder = createSubscriberForwarder(capability);
    ASSERT_NE(forwarder, nullptr);

    auto nonExistentEvents = std::list<std::string>({"non", "existent", "events"});
    auto itCapability = nonExistentEvents.begin();
    auto request = std::make_shared<::testing::StrictMock<AFBRequestMock>>();
    ASSERT_FALSE(forwarder->subscribe(*request, *itCapability++));
    ASSERT_FALSE(forwarder->subscribe(*request, *itCapability++));
    ASSERT_FALSE(forwarder->subscribe(*request, *itCapability++));
}

TEST_F(SubscriberForwarderTest, canNotSubscribeOnEventCreationFailure) {
    // Fail the event creation and return null event.
    ON_CALL(*mAfbApi, createEvent(::testing::_)).WillByDefault(::testing::Return(nullptr));
    EXPECT_CALL(*mAfbApi, createEvent(::testing::_)).Times(4);

    std::list<std::string> upstreamEvents({"up-ev1", "up-ev2"});
    std::list<std::string> downstreamEvents({"down-ev1", "down-ev2"});

    auto capability = std::make_shared<::testing::StrictMock<CapabilityMock>>();
    ON_CALL(*capability, getUpstreamMessages()).WillByDefault(::testing::Return(upstreamEvents));
    ON_CALL(*capability, getDownstreamMessages()).WillByDefault(::testing::Return(downstreamEvents));

    auto forwarder = createSubscriberForwarder(capability);
    ASSERT_NE(forwarder, nullptr);

    auto itCapability = downstreamEvents.begin();
    auto request = std::make_shared<::testing::StrictMock<AFBRequestMock>>();
    std::string payload = "The answer to life the universe and everything = 42";
    ASSERT_FALSE(forwarder->subscribe(*request, *itCapability++));
    ASSERT_FALSE(forwarder->subscribe(*request, *itCapability++));
    itCapability = upstreamEvents.begin();
    ASSERT_FALSE(forwarder->subscribe(*request, *itCapability++));
    ASSERT_FALSE(forwarder->subscribe(*request, *itCapability++));
}

TEST_F(SubscriberForwarderTest, canSubscribeToEvents) {
    std::shared_ptr<AFBEventMock> mockEvent(new ::testing::StrictMock<AFBEventMock>());
    ON_CALL(*mockEvent, subscribe(::testing::_)).WillByDefault(::testing::Return(true));
    EXPECT_CALL(*mockEvent, subscribe(::testing::_)).Times(4);
    auto eventCreator = [mockEvent](const std::string& eventName) -> std::shared_ptr<IAFBApi::IAFBEvent> {
        return mockEvent;
    };

    ON_CALL(*mAfbApi, createEvent(::testing::_)).WillByDefault(::testing::Invoke(eventCreator));
    EXPECT_CALL(*mAfbApi, createEvent(::testing::_)).Times(4);

    std::list<std::string> upstreamEvents({"up-ev1", "up-ev2"});
    std::list<std::string> downstreamEvents({"down-ev1", "down-ev2"});

    auto capability = std::make_shared<::testing::StrictMock<CapabilityMock>>();
    ON_CALL(*capability, getUpstreamMessages()).WillByDefault(::testing::Return(upstreamEvents));
    ON_CALL(*capability, getDownstreamMessages()).WillByDefault(::testing::Return(downstreamEvents));

    auto forwarder = createSubscriberForwarder(capability);
    ASSERT_NE(forwarder, nullptr);

    auto itCapability = downstreamEvents.begin();
    auto request = std::make_shared<::testing::StrictMock<AFBRequestMock>>();
    ASSERT_TRUE(forwarder->subscribe(*request, *itCapability++));
    ASSERT_TRUE(forwarder->subscribe(*request, *itCapability));
    itCapability = upstreamEvents.begin();
    ASSERT_TRUE(forwarder->subscribe(*request, *itCapability++));
    ASSERT_TRUE(forwarder->subscribe(*request, *itCapability));
}

TEST_F(SubscriberForwarderTest, canNotPublishNonExistentEvents) {
    std::shared_ptr<AFBEventMock> mockEvent(new ::testing::StrictMock<AFBEventMock>());
    EXPECT_CALL(*mockEvent, publishEvent(::testing::_)).Times(0);
    auto eventCreator = [mockEvent](const std::string& eventName) -> std::shared_ptr<IAFBApi::IAFBEvent> {
        return mockEvent;
    };

    ON_CALL(*mAfbApi, createEvent(::testing::_)).WillByDefault(::testing::Invoke(eventCreator));
    EXPECT_CALL(*mAfbApi, createEvent(::testing::_)).Times(4);

    std::list<std::string> upstreamEvents({"up-ev1", "up-ev2"});
    std::list<std::string> downstreamEvents({"down-ev1", "down-ev2"});

    auto capability = std::make_shared<::testing::StrictMock<CapabilityMock>>();
    ON_CALL(*capability, getUpstreamMessages()).WillByDefault(::testing::Return(upstreamEvents));
    ON_CALL(*capability, getDownstreamMessages()).WillByDefault(::testing::Return(downstreamEvents));

    auto forwarder = createSubscriberForwarder(capability);
    ASSERT_NE(forwarder, nullptr);

    auto nonExistentEvents = std::list<std::string>({"non", "existent", "events"});
    auto itCapability = nonExistentEvents.begin();
    ASSERT_FALSE(forwarder->forwardMessage(*itCapability++, "My-Payload"));
    ASSERT_FALSE(forwarder->forwardMessage(*itCapability++, "My-Payload"));
    ASSERT_FALSE(forwarder->forwardMessage(*itCapability++, "My-Payload"));
}

TEST_F(SubscriberForwarderTest, canNotPublishOnEventCreationFailure) {
    // Fail the event creation and return null event.
    ON_CALL(*mAfbApi, createEvent(::testing::_)).WillByDefault(::testing::Return(nullptr));
    EXPECT_CALL(*mAfbApi, createEvent(::testing::_)).Times(4);

    std::list<std::string> upstreamEvents({"up-ev1", "up-ev2"});
    std::list<std::string> downstreamEvents({"down-ev1", "down-ev2"});

    auto capability = std::make_shared<::testing::StrictMock<CapabilityMock>>();
    ON_CALL(*capability, getUpstreamMessages()).WillByDefault(::testing::Return(upstreamEvents));
    ON_CALL(*capability, getDownstreamMessages()).WillByDefault(::testing::Return(downstreamEvents));

    auto forwarder = createSubscriberForwarder(capability);
    ASSERT_NE(forwarder, nullptr);

    auto itCapability = downstreamEvents.begin();
    std::string payload = "The answer to life the universe and everything = 42";
    ASSERT_FALSE(forwarder->forwardMessage(*itCapability++, payload));
    ASSERT_FALSE(forwarder->forwardMessage(*itCapability++, payload));
    itCapability = upstreamEvents.begin();
    ASSERT_FALSE(forwarder->forwardMessage(*itCapability++, payload));
    ASSERT_FALSE(forwarder->forwardMessage(*itCapability++, payload));
}

TEST_F(SubscriberForwarderTest, canPublishEvents) {
    std::shared_ptr<AFBEventMock> mockEvent(new ::testing::StrictMock<AFBEventMock>());
    ON_CALL(*mockEvent, publishEvent(::testing::_)).WillByDefault(::testing::Return(true));
    EXPECT_CALL(*mockEvent, publishEvent(::testing::_)).Times(4);
    auto eventCreator = [mockEvent](const std::string& eventName) -> std::shared_ptr<IAFBApi::IAFBEvent> {
        return mockEvent;
    };

    ON_CALL(*mAfbApi, createEvent(::testing::_)).WillByDefault(::testing::Invoke(eventCreator));
    EXPECT_CALL(*mAfbApi, createEvent(::testing::_)).Times(4);

    std::list<std::string> upstreamEvents({"up-ev1", "up-ev2"});
    std::list<std::string> downstreamEvents({"down-ev1", "down-ev2"});

    auto capability = std::make_shared<::testing::StrictMock<CapabilityMock>>();
    ON_CALL(*capability, getUpstreamMessages()).WillByDefault(::testing::Return(upstreamEvents));
    ON_CALL(*capability, getDownstreamMessages()).WillByDefault(::testing::Return(downstreamEvents));

    auto forwarder = createSubscriberForwarder(capability);
    ASSERT_NE(forwarder, nullptr);

    auto itCapability = downstreamEvents.begin();
    std::string payload = "The answer to life the universe and everything = 42";
    ASSERT_TRUE(forwarder->forwardMessage(*itCapability++, payload));
    ASSERT_TRUE(forwarder->forwardMessage(*itCapability++, payload));
    itCapability = upstreamEvents.begin();
    ASSERT_TRUE(forwarder->forwardMessage(*itCapability++, payload));
    ASSERT_TRUE(forwarder->forwardMessage(*itCapability++, payload));
}

}  // namespace test
}  // namespace vshl