aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/groovy/org/onap/cps/temporal/repository/NetworkDataRepositorySpec.groovy
blob: d076f4d075b881e4065f42c73446e29d347af830 (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
/*
 * ============LICENSE_START=======================================================
 * Copyright (c) 2021 Bell Canada.
 * ================================================================================
 * 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.
 *
 * SPDX-License-Identifier: Apache-2.0
 * ============LICENSE_END=========================================================
 */

package org.onap.cps.temporal.repository

import org.onap.cps.temporal.domain.NetworkData
import org.onap.cps.temporal.domain.Operation
import org.onap.cps.temporal.repository.containers.TimescaleContainer
import org.springframework.beans.factory.annotation.Autowired
import org.springframework.boot.test.autoconfigure.jdbc.AutoConfigureTestDatabase
import org.springframework.boot.test.autoconfigure.orm.jpa.DataJpaTest
import org.testcontainers.spock.Testcontainers
import org.springframework.test.annotation.Rollback
import org.springframework.test.context.transaction.TestTransaction
import spock.lang.Shared
import spock.lang.Specification
import java.time.OffsetDateTime

/**
 * Test specification for network data repository.
 */
@Testcontainers
@DataJpaTest
@Rollback(false)
@AutoConfigureTestDatabase(replace = AutoConfigureTestDatabase.Replace.NONE)
class NetworkDataRepositorySpec extends Specification {

    @Shared
    def observedTimestamp = OffsetDateTime.now()
    def myDataspaceName = 'MY_DATASPACE'
    def mySchemaSetName = 'MY_SCHEMA_SET'
    def myAnchorName = 'MY_ANCHOR'
    def payload = '{"message": "Hello World!"}'

    @Autowired
    NetworkDataRepository networkDataRepository

    def networkData = NetworkData.builder()
        .observedTimestamp(observedTimestamp)
        .dataspace(myDataspaceName)
        .schemaSet(mySchemaSetName)
        .anchor(myAnchorName)
        .operation(Operation.CREATE)
        .payload(payload).build()

    @Shared
    TimescaleContainer databaseTestContainer = TimescaleContainer.getInstance()

    def 'Store latest network data in timeseries database.'() {
        when: 'a new Network Data is stored'
            NetworkData savedData = networkDataRepository.save(networkData)
            TestTransaction.end()
        then: ' the saved Network Data is returned'
            with(savedData) {
                dataspace == networkData.getDataspace()
                schemaSet == networkData.getSchemaSet()
                anchor == networkData.getAnchor()
                payload == networkData.getPayload()
                observedTimestamp == networkData.getObservedTimestamp()
                operation == networkData.operation
            }
        and: ' createdTimestamp is auto populated by db '
            networkData.getCreatedTimestamp() == null
            savedData.getCreatedTimestamp() != null
        and: ' the CreationTimestamp is ahead of ObservedTimestamp'
            savedData.getCreatedTimestamp() > networkData.getObservedTimestamp()
    }

}