Fix UI unit tests
This commit is contained in:
parent
42920595ad
commit
d4d23dce72
11 changed files with 907 additions and 265 deletions
|
@ -1,292 +0,0 @@
|
|||
import { expect } from 'chai'
|
||||
import store from './index.js'
|
||||
|
||||
const {
|
||||
getAllRoutersRequest,
|
||||
getAllRoutersSuccess,
|
||||
getAllRoutersFailure,
|
||||
getAllServicesRequest,
|
||||
getAllServicesSuccess,
|
||||
getAllServicesFailure,
|
||||
getAllMiddlewaresRequest,
|
||||
getAllMiddlewaresSuccess,
|
||||
getAllMiddlewaresFailure
|
||||
} = store.mutations
|
||||
|
||||
describe('tcp mutations', function () {
|
||||
/* Routers */
|
||||
describe('tcp routers mutations', function () {
|
||||
it('getAllRoutersRequest', function () {
|
||||
const state = {
|
||||
allRouters: {
|
||||
items: [{}, {}, {}]
|
||||
}
|
||||
}
|
||||
|
||||
getAllRoutersRequest(state)
|
||||
|
||||
expect(state.allRouters.loading).to.equal(true)
|
||||
expect(state.allRouters.items.length).to.equal(3)
|
||||
})
|
||||
|
||||
it('getAllRoutersSuccess page 1', function () {
|
||||
const state = {
|
||||
allRouters: {
|
||||
loading: true
|
||||
}
|
||||
}
|
||||
|
||||
const data = {
|
||||
body: {
|
||||
data: [{}, {}, {}],
|
||||
total: 3
|
||||
},
|
||||
query: 'test query',
|
||||
status: 'warning',
|
||||
page: 1
|
||||
}
|
||||
|
||||
getAllRoutersSuccess(state, data)
|
||||
|
||||
expect(state.allRouters.loading).to.equal(false)
|
||||
expect(state.allRouters.total).to.equal(3)
|
||||
expect(state.allRouters.items.length).to.equal(3)
|
||||
expect(state.allRouters.currentPage).to.equal(1)
|
||||
expect(state.allRouters.currentQuery).to.equal('test query')
|
||||
expect(state.allRouters.currentStatus).to.equal('warning')
|
||||
})
|
||||
|
||||
it('getAllRoutersSuccess page 2', function () {
|
||||
const state = {
|
||||
allRouters: {
|
||||
loading: false,
|
||||
items: [{ id: 1 }, { id: 2 }, { id: 3 }],
|
||||
total: 3,
|
||||
currentPage: 1,
|
||||
currentQuery: 'test query',
|
||||
currentStatus: 'warning'
|
||||
}
|
||||
}
|
||||
|
||||
const data = {
|
||||
body: {
|
||||
data: [{ id: 4 }, { id: 5 }, { id: 6 }, { id: 7 }],
|
||||
total: 4
|
||||
},
|
||||
query: 'test query',
|
||||
status: 'warning',
|
||||
page: 2
|
||||
}
|
||||
|
||||
getAllRoutersSuccess(state, data)
|
||||
|
||||
expect(state.allRouters.loading).to.equal(false)
|
||||
expect(state.allRouters.total).to.equal(7)
|
||||
expect(state.allRouters.items.length).to.equal(7)
|
||||
expect(state.allRouters.currentPage).to.equal(2)
|
||||
expect(state.allRouters.currentQuery).to.equal('test query')
|
||||
expect(state.allRouters.currentStatus).to.equal('warning')
|
||||
})
|
||||
|
||||
it('getAllRoutersFailing', function () {
|
||||
const state = {
|
||||
allRouters: {
|
||||
items: [{}, {}, {}],
|
||||
loading: true
|
||||
}
|
||||
}
|
||||
|
||||
const error = { message: 'invalid request: page: 3, per_page: 10' }
|
||||
|
||||
getAllRoutersFailure(state, error)
|
||||
|
||||
expect(state.allRouters.loading).to.equal(false)
|
||||
expect(state.allRouters.endReached).to.equal(true)
|
||||
expect(state.allRouters.items.length).to.equal(3)
|
||||
})
|
||||
})
|
||||
|
||||
/* Services */
|
||||
describe('tcp services mutations', function () {
|
||||
it('getAllServicesRequest', function () {
|
||||
const state = {
|
||||
allServices: {
|
||||
items: [{}, {}, {}]
|
||||
}
|
||||
}
|
||||
|
||||
getAllServicesRequest(state)
|
||||
|
||||
expect(state.allServices.loading).to.equal(true)
|
||||
expect(state.allServices.items.length).to.equal(3)
|
||||
})
|
||||
|
||||
it('getAllServicesSuccess page 1', function () {
|
||||
const state = {
|
||||
allServices: {
|
||||
loading: true
|
||||
}
|
||||
}
|
||||
|
||||
const data = {
|
||||
body: {
|
||||
data: [{}, {}, {}],
|
||||
total: 3
|
||||
},
|
||||
query: 'test query',
|
||||
status: 'warning',
|
||||
page: 1
|
||||
}
|
||||
|
||||
getAllServicesSuccess(state, data)
|
||||
|
||||
expect(state.allServices.loading).to.equal(false)
|
||||
expect(state.allServices.total).to.equal(3)
|
||||
expect(state.allServices.items.length).to.equal(3)
|
||||
expect(state.allServices.currentPage).to.equal(1)
|
||||
expect(state.allServices.currentQuery).to.equal('test query')
|
||||
expect(state.allServices.currentStatus).to.equal('warning')
|
||||
})
|
||||
|
||||
it('getAllServicesSuccess page 2', function () {
|
||||
const state = {
|
||||
allServices: {
|
||||
loading: false,
|
||||
items: [{ id: 1 }, { id: 2 }, { id: 3 }],
|
||||
total: 3,
|
||||
currentPage: 1,
|
||||
currentQuery: 'test query',
|
||||
currentStatus: 'warning'
|
||||
}
|
||||
}
|
||||
|
||||
const data = {
|
||||
body: {
|
||||
data: [{ id: 4 }, { id: 5 }, { id: 6 }, { id: 7 }],
|
||||
total: 4
|
||||
},
|
||||
query: 'test query',
|
||||
status: 'warning',
|
||||
page: 2
|
||||
}
|
||||
|
||||
getAllServicesSuccess(state, data)
|
||||
|
||||
expect(state.allServices.loading).to.equal(false)
|
||||
expect(state.allServices.total).to.equal(7)
|
||||
expect(state.allServices.items.length).to.equal(7)
|
||||
expect(state.allServices.currentPage).to.equal(2)
|
||||
expect(state.allServices.currentQuery).to.equal('test query')
|
||||
expect(state.allServices.currentStatus).to.equal('warning')
|
||||
})
|
||||
|
||||
it('getAllServicesFailing', function () {
|
||||
const state = {
|
||||
allServices: {
|
||||
items: [{}, {}, {}],
|
||||
loading: true
|
||||
}
|
||||
}
|
||||
|
||||
const error = { message: 'invalid request: page: 3, per_page: 10' }
|
||||
|
||||
getAllServicesFailure(state, error)
|
||||
|
||||
expect(state.allServices.loading).to.equal(false)
|
||||
expect(state.allServices.endReached).to.equal(true)
|
||||
expect(state.allServices.items.length).to.equal(3)
|
||||
})
|
||||
})
|
||||
|
||||
/* Middlewares */
|
||||
describe('tcp middlewares mutations', function () {
|
||||
it('getAllMiddlewaresRequest', function () {
|
||||
const state = {
|
||||
allMiddlewares: {
|
||||
items: [{}, {}, {}]
|
||||
}
|
||||
}
|
||||
|
||||
getAllMiddlewaresRequest(state)
|
||||
|
||||
expect(state.allMiddlewares.loading).to.equal(true)
|
||||
expect(state.allMiddlewares.items.length).to.equal(3)
|
||||
})
|
||||
|
||||
it('getAllMiddlewaresSuccess page 1', function () {
|
||||
const state = {
|
||||
allMiddlewares: {
|
||||
loading: true
|
||||
}
|
||||
}
|
||||
|
||||
const data = {
|
||||
body: {
|
||||
data: [{}, {}, {}],
|
||||
total: 3
|
||||
},
|
||||
query: 'test query',
|
||||
status: 'warning',
|
||||
page: 1
|
||||
}
|
||||
|
||||
getAllMiddlewaresSuccess(state, data)
|
||||
|
||||
expect(state.allMiddlewares.loading).to.equal(false)
|
||||
expect(state.allMiddlewares.total).to.equal(3)
|
||||
expect(state.allMiddlewares.items.length).to.equal(3)
|
||||
expect(state.allMiddlewares.currentPage).to.equal(1)
|
||||
expect(state.allMiddlewares.currentQuery).to.equal('test query')
|
||||
expect(state.allMiddlewares.currentStatus).to.equal('warning')
|
||||
})
|
||||
|
||||
it('getAllMiddlewaresSuccess page 2', function () {
|
||||
const state = {
|
||||
allMiddlewares: {
|
||||
loading: false,
|
||||
items: [{ id: 1 }, { id: 2 }, { id: 3 }],
|
||||
total: 3,
|
||||
currentPage: 1,
|
||||
currentQuery: 'test query',
|
||||
currentStatus: 'warning'
|
||||
}
|
||||
}
|
||||
|
||||
const data = {
|
||||
body: {
|
||||
data: [{ id: 4 }, { id: 5 }, { id: 6 }, { id: 7 }],
|
||||
total: 4
|
||||
},
|
||||
query: 'test query',
|
||||
status: 'warning',
|
||||
page: 2
|
||||
}
|
||||
|
||||
getAllMiddlewaresSuccess(state, data)
|
||||
|
||||
expect(state.allMiddlewares.loading).to.equal(false)
|
||||
expect(state.allMiddlewares.total).to.equal(7)
|
||||
expect(state.allMiddlewares.items.length).to.equal(7)
|
||||
expect(state.allMiddlewares.currentPage).to.equal(2)
|
||||
expect(state.allMiddlewares.currentQuery).to.equal('test query')
|
||||
expect(state.allMiddlewares.currentStatus).to.equal('warning')
|
||||
})
|
||||
|
||||
it('getAllMiddlewaresFailing', function () {
|
||||
const state = {
|
||||
allMiddlewares: {
|
||||
items: [{}, {}, {}],
|
||||
loading: true
|
||||
}
|
||||
}
|
||||
|
||||
const error = { message: 'invalid request: page: 3, per_page: 10' }
|
||||
|
||||
getAllMiddlewaresFailure(state, error)
|
||||
|
||||
expect(state.allMiddlewares.loading).to.equal(false)
|
||||
expect(state.allMiddlewares.endReached).to.equal(true)
|
||||
expect(state.allMiddlewares.items.length).to.equal(3)
|
||||
})
|
||||
})
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue