Skip to content
Snippets Groups Projects
Commit 67dbaca0 authored by Rahul Nakka's avatar Rahul Nakka
Browse files

latest changes

parent b628a214
No related branches found
No related tags found
1 merge request!6Trusted ibm
/*
* // Copyright 2017-2019, Schlumberger // // Licensed under the Apache License, Copyright 2017-2019, Schlumberger // // Licensed under the Apache License,
* Version 2.0 (the "License"); // you may not use this file except in 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 // // compliance with the License. // You may obtain a copy of the License at // //
* http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by
* applicable law or agreed to in writing, software // distributed under the applicable law or agreed to in writing, software // distributed under the
* License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. // See the License for the CONDITIONS OF ANY KIND, either express or implied. // See the License for the
* specific language governing permissions and // limitations under the License. specific language governing permissions and // limitations under the License.
*
* package org.opengroup.osdu.indexer.ibm.service; package org.opengroup.osdu.indexer.ibm.service;
*
* import static org.mockito.Mockito.when; import static org.mockito.Mockito.when;
*
* import org.junit.Before; import org.junit.Ignore; import org.junit.Test; import org.junit.Before; import org.junit.Ignore; import org.junit.Test;
* import org.junit.runner.RunWith; import org.mockito.InjectMocks; import import org.junit.runner.RunWith; import org.mockito.InjectMocks; import
* org.mockito.Mock; import org.mockito.Mock; import
* org.opengroup.osdu.core.common.model.http.AppException; import org.opengroup.osdu.core.common.model.http.AppException; import
* org.opengroup.osdu.core.common.model.http.DpsHeaders; import org.opengroup.osdu.core.common.model.http.DpsHeaders; import
* org.opengroup.osdu.core.common.model.tenant.TenantInfo; import org.opengroup.osdu.core.common.model.tenant.TenantInfo; import
* org.opengroup.osdu.core.common.provider.interfaces.ITenantFactory; import org.opengroup.osdu.core.common.provider.interfaces.ITenantFactory; import
* org.opengroup.osdu.indexer.ibm.util.IHeadersInfo; import org.opengroup.osdu.indexer.ibm.util.IHeadersInfo; import
* org.springframework.http.HttpHeaders; import org.springframework.http.HttpHeaders; import
* org.springframework.test.context.junit4.SpringRunner; org.springframework.test.context.junit4.SpringRunner;
*
* @RunWith(SpringRunner.class) public class TenantInfoServiceTest { @RunWith(SpringRunner.class) public class TenantInfoServiceTest {
*
* private static final String HEADER_NAME = "ANY_HEADER"; private static final private static final String HEADER_NAME = "ANY_HEADER"; private static final
* String HEADER_VALUE = "ANY_VALUE"; String HEADER_VALUE = "ANY_VALUE";
*
* @Mock private ITenantFactory tenantFactory; @Mock private ITenantFactory tenantFactory;
*
* @Mock private IHeadersInfo headersInfo; // TODO alanbraz investigate @Mock private IHeadersInfo headersInfo; // TODO alanbraz investigate
* //@InjectMocks // private TenantInfoService sut; //@InjectMocks // private TenantInfoService sut;
*
* @Mock private TenantInfo info; @Mock private TenantInfo info;
*
* @Mock private HttpHeaders httpHeaders; @Mock private HttpHeaders httpHeaders;
*
* @InjectMocks private DpsHeaders HEADERS; @InjectMocks private DpsHeaders HEADERS;
*
* @Before public void setup() { HEADERS.put(HEADER_NAME, HEADER_VALUE); } @Before public void setup() { HEADERS.put(HEADER_NAME, HEADER_VALUE); }
*
* @Ignore @Ignore
*
* @Test public void should_return_validTenant_given_validAccountId() { @Test public void should_return_validTenant_given_validAccountId() {
*
* when(this.info.getName()).thenReturn("tenant1"); when(this.info.getName()).thenReturn("tenant1");
* when(tenantFactory.getTenantInfo("tenant1")).thenReturn(info); when(tenantFactory.getTenantInfo("tenant1")).thenReturn(info);
*
* //when(this.headersInfo.getHeaders()).thenReturn(HEADERS); //when(this.headersInfo.getHeaders()).thenReturn(HEADERS);
*
* //when(this.headersInfo.getPartitionId()).thenReturn("tenant1"); //when(this.headersInfo.getPartitionId()).thenReturn("tenant1");
*
* //when(this.sut.getTenantInfo()).thenReturn(info); //when(this.sut.getTenantInfo()).thenReturn(info);
*
* //assertNotNull(this.sut.getTenantInfo()); assertEquals("tenant1", //assertNotNull(this.sut.getTenantInfo()); assertEquals("tenant1",
* this.sut.getTenantInfo().getName()); } this.sut.getTenantInfo().getName()); }
*
* @Test(expected = AppException.class) public void @Test(expected = AppException.class) public void
* should_throwException_given_invalidAccountId() { should_throwException_given_invalidAccountId() {
*
* when(this.info.getName()).thenReturn("tenant2"); when(this.info.getName()).thenReturn("tenant2");
* when(tenantFactory.getTenantInfo("tenant1")).thenReturn(null); when(tenantFactory.getTenantInfo("tenant1")).thenReturn(null);
*
* //when(this.sut.getTenantInfo()).thenReturn(info); //when(this.sut.getTenantInfo()).thenReturn(info);
*
* //assertNotNull(this.sut.getTenantInfo()); } } //assertNotNull(this.sut.getTenantInfo()); } }
*/
\ No newline at end of file \ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment