committed by
Andrew Shvayka
3 changed files with 71 additions and 4 deletions
@ -0,0 +1,61 @@ |
|||
/** |
|||
* Copyright © 2016-2021 The Thingsboard Authors |
|||
* |
|||
* Licensed under the Apache License, Version 2.0 (the "License"); |
|||
* you may not use this file except in compliance with the License. |
|||
* You may obtain a copy of the License at |
|||
* |
|||
* http://www.apache.org/licenses/LICENSE-2.0
|
|||
* |
|||
* Unless required by applicable law or agreed to in writing, software |
|||
* distributed under the License 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. |
|||
*/ |
|||
package org.thingsboard.rule.engine.rest; |
|||
|
|||
|
|||
import io.netty.channel.EventLoopGroup; |
|||
import io.netty.channel.nio.NioEventLoopGroup; |
|||
import org.junit.After; |
|||
import org.junit.Before; |
|||
import org.junit.Test; |
|||
|
|||
import static org.hamcrest.MatcherAssert.assertThat; |
|||
import static org.hamcrest.Matchers.instanceOf; |
|||
import static org.hamcrest.Matchers.is; |
|||
import static org.mockito.ArgumentMatchers.any; |
|||
import static org.mockito.BDDMockito.willCallRealMethod; |
|||
import static org.mockito.Mockito.mock; |
|||
|
|||
public class TbHttpClientTest { |
|||
|
|||
EventLoopGroup eventLoop; |
|||
TbHttpClient client; |
|||
|
|||
@Before |
|||
public void setUp() throws Exception { |
|||
client = mock(TbHttpClient.class); |
|||
willCallRealMethod().given(client).getSharedOrCreateEventLoopGroup(any()); |
|||
} |
|||
|
|||
@After |
|||
public void tearDown() throws Exception { |
|||
if (eventLoop != null) { |
|||
eventLoop.shutdownGracefully(); |
|||
} |
|||
} |
|||
|
|||
@Test |
|||
public void givenSharedEventLoop_whenGetEventLoop_ThenReturnShared() { |
|||
eventLoop = mock(EventLoopGroup.class); |
|||
assertThat(client.getSharedOrCreateEventLoopGroup(eventLoop), is(eventLoop)); |
|||
} |
|||
|
|||
@Test |
|||
public void givenNull_whenGetEventLoop_ThenReturnShared() { |
|||
eventLoop = client.getSharedOrCreateEventLoopGroup(null); |
|||
assertThat(eventLoop, instanceOf(NioEventLoopGroup.class)); |
|||
} |
|||
} |
|||
Loading…
Reference in new issue