aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/onap/vid/dao/FnAppDoaImplTest.java
blob: 2c2aa89a0add09023f0e5c89d779d1ea46a90379 (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
package org.onap.vid.dao;

import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;

import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.Mock;
import org.mockito.runners.MockitoJUnitRunner;

import static org.assertj.core.api.Java6Assertions.assertThat;
import static org.assertj.core.api.Java6Assertions.assertThatThrownBy;
import static org.mockito.BDDMockito.given;
import static org.mockito.Matchers.anyString;

@RunWith(MockitoJUnitRunner.class)
public class FnAppDoaImplTest {

    private FnAppDoaImpl fnAppDoa;

    @Mock
    private ConnectionFactory connectionFactory;

    @Mock
    private Connection connection;

    @Mock
    private PreparedStatement preparedStatement;

    @Mock
    private ResultSet resultSet;

    private static final String ERROR_MESSAGE = "error message";
    private static final String QUERY = "select count(*) from fn_app";

    @Before
    public void setUp() throws SQLException {
        given(resultSet.next()).willReturn(true);
        given(resultSet.getInt(1)).willReturn(5);
        given(preparedStatement.executeQuery()).willReturn(resultSet);
        given(connectionFactory.getConnection(anyString(), anyString(), anyString())).willReturn(connection);
        fnAppDoa = new FnAppDoaImpl(connectionFactory);
    }

    private void okCaseSetUp() throws SQLException {

        given(connection.prepareStatement(QUERY)).willReturn(preparedStatement);
    }

    private void nokCaseSetup() throws SQLException {
        given(connection.prepareStatement(QUERY)).willThrow(new SQLException(ERROR_MESSAGE));
    }

    @Test
    public void getProfileCount_shouldReturnNumber_whenNoExceptionIsThrown() throws SQLException {
        okCaseSetUp();
        assertThat(fnAppDoa.getProfileCount("anyUrl", "anyUsername", "anyPassword")).isEqualTo(5);
    }

    @Test
    public void getProfileCount_shouldRethrowSQLException() throws SQLException {
        nokCaseSetup();
        assertThatThrownBy(() -> fnAppDoa.getProfileCount("anyUrl", "anyUsername", "anyPassword"))
                .isInstanceOf(SQLException.class).hasMessage(ERROR_MESSAGE);
    }
}