Skip to content
Snippets Groups Projects
Commit 3fa022fc authored by fsdavid's avatar fsdavid
Browse files

Add test case to change template coloring bug #543

parent c717c238
No related branches found
No related tags found
No related merge requests found
...@@ -81,7 +81,7 @@ describe('> non-atlas images', () => { ...@@ -81,7 +81,7 @@ describe('> non-atlas images', () => {
await iavPage.wait(10000) await iavPage.wait(10000)
const interceptedCalls = await iavPage.getInterceptedHttpCalls() const interceptedCalls = await iavPage.getInterceptedHttpCalls()
const arr = [ const array = [
'BI-FOM-HSV_R', 'BI-FOM-HSV_R',
'BI-FOM-HSV_G', 'BI-FOM-HSV_G',
'BI-FOM-HSV_B', 'BI-FOM-HSV_B',
...@@ -91,7 +91,7 @@ describe('> non-atlas images', () => { ...@@ -91,7 +91,7 @@ describe('> non-atlas images', () => {
'BI-MRS', 'BI-MRS',
] ]
for (const item of arr) { for (const item of array) {
expect( expect(
interceptedCalls.find(({ interceptedCalls.find(({
method, method,
......
...@@ -29,5 +29,35 @@ describe('trans template navigation', () => { ...@@ -29,5 +29,35 @@ describe('trans template navigation', () => {
expect(!!found).toBe(true) expect(!!found).toBe(true)
}) })
it('Check region color after template change when region was selected', async () => {
const searchParam = new URLSearchParams()
searchParam.set('templateSelected', 'MNI 152 ICBM 2009c Nonlinear Asymmetric')
searchParam.set('parcellationSelected', 'JuBrain Cytoarchitectonic Atlas')
const area = 'Area TE 3 (STG) - right hemisphere'
const expectedPosition = [630, 510]
const expectedColor = {red: 70, green: 138, blue: 57}
await iavPage.goto(`/?${searchParam.toString()}`, { interceptHttp: true, doNotAutomate: true })
await iavPage.wait(200)
await iavPage.dismissModal()
await iavPage.waitUntilAllChunksLoaded()
await iavPage.searchRegionWithText(area)
await iavPage.wait(1000)
await iavPage.selectSearchRegionAutocompleteWithText()
await iavPage.dismissModal()
await iavPage.wait(500)
await iavPage.selectDropdownTemplate('MNI Colin 27')
await iavPage.waitUntilAllChunksLoaded()
const { red, green, blue } = await iavPage.getRgbAt({ position: expectedPosition })
expect(red).toEqual(expectedColor.red)
expect(green).toEqual(expectedColor.green)
expect(blue).toEqual(expectedColor.blue)
})
// TODO test that nav/zoom/orientation are actually preserved // TODO test that nav/zoom/orientation are actually preserved
}) })
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment