aboutsummaryrefslogtreecommitdiffstats
path: root/platform-logic/generic-resource-api/pom.xml
blob: 8e0c12569cc7aaa911c2addf41c24b0cbc894a0e (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
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <parent>
        <groupId>org.onap.sdnc.oam</groupId>
        <artifactId>platform-logic</artifactId>
        <version>2.1.3-SNAPSHOT</version>
    </parent>

    <groupId>org.onap.sdnc.oam</groupId>
    <artifactId>platform-logic-generic-resource-api</artifactId>
    <version>2.1.3-SNAPSHOT</version>
    <packaging>pom</packaging>

    <name>sdnc-oam :: platform-logic :: ${project.artifactId}</name>
    <description>Contains platform-level service logic for the Generic Resource API</description>

    <build>
        <plugins>
            <plugin>
                <artifactId>maven-resources-plugin</artifactId>
                <version>2.6</version>
                <executions>
                    <execution>
                        <id>copy-version</id>
                        <goals>
                            <goal>copy-resources</goal>
                        </goals><!-- here the phase you need -->
                        <phase>validate</phase>
                        <configuration>
                            <outputDirectory>../target/svclogic/graphs/generic-resource-api</outputDirectory>
                            <resources>
                                <resource>
                                    <directory>src/main/xml</directory>
                                    <includes>
                                        <include>**/*.xml</include>
                                    </includes>
                                    <filtering>true</filtering>
                                </resource>
                                <resource>
                                    <directory>src/main/resources</directory>
                                    <includes>
                                        <include>graph.versions</include>
                                    </includes>
                                    <filtering>true</filtering>
                                </resource>
                            </resources>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
</project>
izations')).toEqual(true); }); it('Verify Spinner is present but not visible', () => { expect(wrapper.find(Spinner)).toHaveLength(1); expect(wrapper.find(Spinner).props().loading).toEqual(false); }); it('Verify total count is displayed', () => { expect(wrapper.contains(<span>{countProp}</span>)).toBe(true); }); }) describe('VnfSearchTotalCountVisualization - Shallow render of component with no chart data', () => { let wrapper; const countProp = null; beforeEach( () => { wrapper = shallow( <VnfSearchTotalCountVisualization enableBusyFeedback={false} count={countProp} /> ); }) it('Visualization graph hidden', () => { expect(wrapper.length).toEqual(1); expect(['visualizations', 'hidden'].every(className => wrapper.hasClass(className))).toEqual(true); }); }) describe('VnfSearchTotalCountVisualization - Shallow render of component with busy feedback', () => { let wrapper; const countProp = 25; beforeEach( () => { wrapper = shallow( <VnfSearchTotalCountVisualization enableBusyFeedback={true} count={countProp} /> ); }) it('Render basic component', () => { expect(wrapper.length).toEqual(1); expect(wrapper.hasClass('visualizations')).toEqual(true); }); it('Verify Spinner is present and visible', () => { expect(wrapper.find(Spinner)).toHaveLength(1); expect(wrapper.find(Spinner).props().loading).toEqual(true); }); it('Verify total count is displayed', () => { expect(wrapper.contains(<span>{countProp}</span>)).toBe(true); }); }) describe('VnfSearchTotalCountVisualization - Render React Component (wrapped in <Provider>)', () => { const initialState = { vnfSearch: { count: 25, enableBusyFeedback: false } }; const mockStore = configureStore(); let store, wrapper; beforeEach( () => { store = mockStore(initialState); wrapper = mount(<Provider store={store}><ConnectedVnfSearchTotalCountVisualization /></Provider>); }) it('Render the connected component', () => { expect(wrapper.find(ConnectedVnfSearchTotalCountVisualization).length).toEqual(1); }); it('Validate props from store', () => { expect(wrapper.find(VnfSearchTotalCountVisualization).props().enableBusyFeedback).toEqual(initialState.vnfSearch.enableBusyFeedback); expect(wrapper.find(VnfSearchTotalCountVisualization).props().count).toEqual(initialState.vnfSearch.count); }); }) describe('VnfSearchTotalCountVisualization - Render React Component (wrapped in <Provider>) with default props', () => { const initialState = { vnfSearch: {} }; const mockStore = configureStore(); let store, wrapper; beforeEach( () => { store = mockStore(initialState); wrapper = mount(<Provider store={store}><ConnectedVnfSearchTotalCountVisualization /></Provider>); }) it('Render the connected component', () => { expect(wrapper.find(ConnectedVnfSearchTotalCountVisualization).length).toEqual(1); }); it('Validate default props loaded', () => { expect(wrapper.find(VnfSearchTotalCountVisualization).props().enableBusyFeedback).toEqual(false); expect(wrapper.find(VnfSearchTotalCountVisualization).props().count).toEqual(TOTAL_VNF_COUNT.emptyValue); }); })