Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
gitlab-ce
Commits
1414cfae
Commit
1414cfae
authored
Jan 30, 2019
by
Robert Speicher
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "Merge branch '56398-fix-cluster-installation-loading-state' into 'master'"
This reverts merge request !24485
parent
13c6d254
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
125 additions
and
76 deletions
+125
-76
app/assets/javascripts/clusters/clusters_bundle.js
app/assets/javascripts/clusters/clusters_bundle.js
+16
-12
app/assets/javascripts/clusters/components/application_row.vue
...ssets/javascripts/clusters/components/application_row.vue
+30
-29
app/assets/javascripts/clusters/constants.js
app/assets/javascripts/clusters/constants.js
+2
-1
changelogs/unreleased/56398-fix-cluster-installation-loading-state.yml
...released/56398-fix-cluster-installation-loading-state.yml
+0
-5
spec/javascripts/clusters/clusters_bundle_spec.js
spec/javascripts/clusters/clusters_bundle_spec.js
+47
-10
spec/javascripts/clusters/components/application_row_spec.js
spec/javascripts/clusters/components/application_row_spec.js
+30
-19
No files found.
app/assets/javascripts/clusters/clusters_bundle.js
View file @
1414cfae
...
@@ -6,7 +6,7 @@ import Flash from '../flash';
...
@@ -6,7 +6,7 @@ import Flash from '../flash';
import
Poll
from
'
../lib/utils/poll
'
;
import
Poll
from
'
../lib/utils/poll
'
;
import
initSettingsPanels
from
'
../settings_panels
'
;
import
initSettingsPanels
from
'
../settings_panels
'
;
import
eventHub
from
'
./event_hub
'
;
import
eventHub
from
'
./event_hub
'
;
import
{
APPLICATION_STATUS
,
REQUEST_
SUBMITTED
,
REQUEST_FAILURE
}
from
'
./constants
'
;
import
{
APPLICATION_STATUS
,
REQUEST_
LOADING
,
REQUEST_SUCCESS
,
REQUEST_FAILURE
}
from
'
./constants
'
;
import
ClustersService
from
'
./services/clusters_service
'
;
import
ClustersService
from
'
./services/clusters_service
'
;
import
ClustersStore
from
'
./stores/clusters_store
'
;
import
ClustersStore
from
'
./stores/clusters_store
'
;
import
Applications
from
'
./components/applications.vue
'
;
import
Applications
from
'
./components/applications.vue
'
;
...
@@ -231,18 +231,22 @@ export default class Clusters {
...
@@ -231,18 +231,22 @@ export default class Clusters {
installApplication
(
data
)
{
installApplication
(
data
)
{
const
appId
=
data
.
id
;
const
appId
=
data
.
id
;
this
.
store
.
updateAppProperty
(
appId
,
'
requestStatus
'
,
REQUEST_
SUBMITTED
);
this
.
store
.
updateAppProperty
(
appId
,
'
requestStatus
'
,
REQUEST_
LOADING
);
this
.
store
.
updateAppProperty
(
appId
,
'
requestReason
'
,
null
);
this
.
store
.
updateAppProperty
(
appId
,
'
requestReason
'
,
null
);
this
.
store
.
updateAppProperty
(
appId
,
'
statusReason
'
,
null
);
this
.
service
this
.
service
.
installApplication
(
appId
,
data
.
params
).
catch
(()
=>
{
.
installApplication
(
appId
,
data
.
params
)
this
.
store
.
updateAppProperty
(
appId
,
'
requestStatus
'
,
REQUEST_FAILURE
);
.
then
(()
=>
{
this
.
store
.
updateAppProperty
(
this
.
store
.
updateAppProperty
(
appId
,
'
requestStatus
'
,
REQUEST_SUCCESS
);
appId
,
})
'
requestReason
'
,
.
catch
(()
=>
{
s__
(
'
ClusterIntegration|Request to begin installing failed
'
),
this
.
store
.
updateAppProperty
(
appId
,
'
requestStatus
'
,
REQUEST_FAILURE
);
);
this
.
store
.
updateAppProperty
(
});
appId
,
'
requestReason
'
,
s__
(
'
ClusterIntegration|Request to begin installing failed
'
),
);
});
}
}
destroy
()
{
destroy
()
{
...
...
app/assets/javascripts/clusters/components/application_row.vue
View file @
1414cfae
...
@@ -4,7 +4,12 @@ import { s__, sprintf } from '../../locale';
...
@@ -4,7 +4,12 @@ import { s__, sprintf } from '../../locale';
import
eventHub
from
'
../event_hub
'
;
import
eventHub
from
'
../event_hub
'
;
import
identicon
from
'
../../vue_shared/components/identicon.vue
'
;
import
identicon
from
'
../../vue_shared/components/identicon.vue
'
;
import
loadingButton
from
'
../../vue_shared/components/loading_button.vue
'
;
import
loadingButton
from
'
../../vue_shared/components/loading_button.vue
'
;
import
{
APPLICATION_STATUS
,
REQUEST_SUBMITTED
,
REQUEST_FAILURE
}
from
'
../constants
'
;
import
{
APPLICATION_STATUS
,
REQUEST_LOADING
,
REQUEST_SUCCESS
,
REQUEST_FAILURE
,
}
from
'
../constants
'
;
export
default
{
export
default
{
components
:
{
components
:
{
...
@@ -67,13 +72,6 @@ export default {
...
@@ -67,13 +72,6 @@ export default {
isKnownStatus
()
{
isKnownStatus
()
{
return
Object
.
values
(
APPLICATION_STATUS
).
includes
(
this
.
status
);
return
Object
.
values
(
APPLICATION_STATUS
).
includes
(
this
.
status
);
},
},
isInstalling
()
{
return
(
this
.
status
===
APPLICATION_STATUS
.
SCHEDULED
||
this
.
status
===
APPLICATION_STATUS
.
INSTALLING
||
(
this
.
requestStatus
===
REQUEST_SUBMITTED
&&
!
this
.
statusReason
&&
!
this
.
isInstalled
)
);
},
isInstalled
()
{
isInstalled
()
{
return
(
return
(
this
.
status
===
APPLICATION_STATUS
.
INSTALLED
||
this
.
status
===
APPLICATION_STATUS
.
INSTALLED
||
...
@@ -81,18 +79,6 @@ export default {
...
@@ -81,18 +79,6 @@ export default {
this
.
status
===
APPLICATION_STATUS
.
UPDATING
this
.
status
===
APPLICATION_STATUS
.
UPDATING
);
);
},
},
canInstall
()
{
if
(
this
.
isInstalling
)
{
return
false
;
}
return
(
this
.
status
===
APPLICATION_STATUS
.
NOT_INSTALLABLE
||
this
.
status
===
APPLICATION_STATUS
.
INSTALLABLE
||
this
.
status
===
APPLICATION_STATUS
.
ERROR
||
this
.
isUnknownStatus
);
},
hasLogo
()
{
hasLogo
()
{
return
!!
this
.
logoUrl
;
return
!!
this
.
logoUrl
;
},
},
...
@@ -104,7 +90,12 @@ export default {
...
@@ -104,7 +90,12 @@ export default {
return
`js-cluster-application-row-
${
this
.
id
}
`
;
return
`js-cluster-application-row-
${
this
.
id
}
`
;
},
},
installButtonLoading
()
{
installButtonLoading
()
{
return
!
this
.
status
||
this
.
status
===
APPLICATION_STATUS
.
SCHEDULED
||
this
.
isInstalling
;
return
(
!
this
.
status
||
this
.
status
===
APPLICATION_STATUS
.
SCHEDULED
||
this
.
status
===
APPLICATION_STATUS
.
INSTALLING
||
this
.
requestStatus
===
REQUEST_LOADING
);
},
},
installButtonDisabled
()
{
installButtonDisabled
()
{
// Avoid the potential for the real-time data to say APPLICATION_STATUS.INSTALLABLE but
// Avoid the potential for the real-time data to say APPLICATION_STATUS.INSTALLABLE but
...
@@ -113,17 +104,30 @@ export default {
...
@@ -113,17 +104,30 @@ export default {
return
(
return
(
((
this
.
status
!==
APPLICATION_STATUS
.
INSTALLABLE
&&
((
this
.
status
!==
APPLICATION_STATUS
.
INSTALLABLE
&&
this
.
status
!==
APPLICATION_STATUS
.
ERROR
)
||
this
.
status
!==
APPLICATION_STATUS
.
ERROR
)
||
this
.
isInstalling
)
&&
this
.
requestStatus
===
REQUEST_LOADING
||
this
.
requestStatus
===
REQUEST_SUCCESS
)
&&
this
.
isKnownStatus
this
.
isKnownStatus
);
);
},
},
installButtonLabel
()
{
installButtonLabel
()
{
let
label
;
let
label
;
if
(
this
.
canInstall
)
{
if
(
this
.
status
===
APPLICATION_STATUS
.
NOT_INSTALLABLE
||
this
.
status
===
APPLICATION_STATUS
.
INSTALLABLE
||
this
.
status
===
APPLICATION_STATUS
.
ERROR
||
this
.
isUnknownStatus
)
{
label
=
s__
(
'
ClusterIntegration|Install
'
);
label
=
s__
(
'
ClusterIntegration|Install
'
);
}
else
if
(
this
.
isInstalling
)
{
}
else
if
(
this
.
status
===
APPLICATION_STATUS
.
SCHEDULED
||
this
.
status
===
APPLICATION_STATUS
.
INSTALLING
)
{
label
=
s__
(
'
ClusterIntegration|Installing
'
);
label
=
s__
(
'
ClusterIntegration|Installing
'
);
}
else
if
(
this
.
isInstalled
)
{
}
else
if
(
this
.
status
===
APPLICATION_STATUS
.
INSTALLED
||
this
.
status
===
APPLICATION_STATUS
.
UPDATED
||
this
.
status
===
APPLICATION_STATUS
.
UPDATING
)
{
label
=
s__
(
'
ClusterIntegration|Installed
'
);
label
=
s__
(
'
ClusterIntegration|Installed
'
);
}
}
...
@@ -136,10 +140,7 @@ export default {
...
@@ -136,10 +140,7 @@ export default {
return
s__
(
'
ClusterIntegration|Manage
'
);
return
s__
(
'
ClusterIntegration|Manage
'
);
},
},
hasError
()
{
hasError
()
{
return
(
return
this
.
status
===
APPLICATION_STATUS
.
ERROR
||
this
.
requestStatus
===
REQUEST_FAILURE
;
!
this
.
isInstalling
&&
(
this
.
status
===
APPLICATION_STATUS
.
ERROR
||
this
.
requestStatus
===
REQUEST_FAILURE
)
);
},
},
generalErrorDescription
()
{
generalErrorDescription
()
{
return
sprintf
(
s__
(
'
ClusterIntegration|Something went wrong while installing %{title}
'
),
{
return
sprintf
(
s__
(
'
ClusterIntegration|Something went wrong while installing %{title}
'
),
{
...
...
app/assets/javascripts/clusters/constants.js
View file @
1414cfae
...
@@ -18,7 +18,8 @@ export const APPLICATION_STATUS = {
...
@@ -18,7 +18,8 @@ export const APPLICATION_STATUS = {
};
};
// These are only used client-side
// These are only used client-side
export
const
REQUEST_SUBMITTED
=
'
request-submitted
'
;
export
const
REQUEST_LOADING
=
'
request-loading
'
;
export
const
REQUEST_SUCCESS
=
'
request-success
'
;
export
const
REQUEST_FAILURE
=
'
request-failure
'
;
export
const
REQUEST_FAILURE
=
'
request-failure
'
;
export
const
INGRESS
=
'
ingress
'
;
export
const
INGRESS
=
'
ingress
'
;
export
const
JUPYTER
=
'
jupyter
'
;
export
const
JUPYTER
=
'
jupyter
'
;
...
...
changelogs/unreleased/56398-fix-cluster-installation-loading-state.yml
deleted
100644 → 0
View file @
13c6d254
---
title
:
Fix cluster installation processing spinner
merge_request
:
24485
author
:
type
:
fixed
spec/javascripts/clusters/clusters_bundle_spec.js
View file @
1414cfae
import
Clusters
from
'
~/clusters/clusters_bundle
'
;
import
Clusters
from
'
~/clusters/clusters_bundle
'
;
import
{
REQUEST_SUBMITTED
,
REQUEST_FAILURE
,
APPLICATION_STATUS
}
from
'
~/clusters/constants
'
;
import
{
REQUEST_LOADING
,
REQUEST_SUCCESS
,
REQUEST_FAILURE
,
APPLICATION_STATUS
,
}
from
'
~/clusters/constants
'
;
import
getSetTimeoutPromise
from
'
spec/helpers/set_timeout_promise_helper
'
;
import
getSetTimeoutPromise
from
'
spec/helpers/set_timeout_promise_helper
'
;
describe
(
'
Clusters
'
,
()
=>
{
describe
(
'
Clusters
'
,
()
=>
{
...
@@ -191,43 +196,67 @@ describe('Clusters', () => {
...
@@ -191,43 +196,67 @@ describe('Clusters', () => {
});
});
describe
(
'
installApplication
'
,
()
=>
{
describe
(
'
installApplication
'
,
()
=>
{
it
(
'
tries to install helm
'
,
()
=>
{
it
(
'
tries to install helm
'
,
done
=>
{
spyOn
(
cluster
.
service
,
'
installApplication
'
).
and
.
returnValue
(
Promise
.
resolve
());
spyOn
(
cluster
.
service
,
'
installApplication
'
).
and
.
returnValue
(
Promise
.
resolve
());
expect
(
cluster
.
store
.
state
.
applications
.
helm
.
requestStatus
).
toEqual
(
null
);
expect
(
cluster
.
store
.
state
.
applications
.
helm
.
requestStatus
).
toEqual
(
null
);
cluster
.
installApplication
({
id
:
'
helm
'
});
cluster
.
installApplication
({
id
:
'
helm
'
});
expect
(
cluster
.
store
.
state
.
applications
.
helm
.
requestStatus
).
toEqual
(
REQUEST_
SUBMITTED
);
expect
(
cluster
.
store
.
state
.
applications
.
helm
.
requestStatus
).
toEqual
(
REQUEST_
LOADING
);
expect
(
cluster
.
store
.
state
.
applications
.
helm
.
requestReason
).
toEqual
(
null
);
expect
(
cluster
.
store
.
state
.
applications
.
helm
.
requestReason
).
toEqual
(
null
);
expect
(
cluster
.
service
.
installApplication
).
toHaveBeenCalledWith
(
'
helm
'
,
undefined
);
expect
(
cluster
.
service
.
installApplication
).
toHaveBeenCalledWith
(
'
helm
'
,
undefined
);
getSetTimeoutPromise
()
.
then
(()
=>
{
expect
(
cluster
.
store
.
state
.
applications
.
helm
.
requestStatus
).
toEqual
(
REQUEST_SUCCESS
);
expect
(
cluster
.
store
.
state
.
applications
.
helm
.
requestReason
).
toEqual
(
null
);
})
.
then
(
done
)
.
catch
(
done
.
fail
);
});
});
it
(
'
tries to install ingress
'
,
()
=>
{
it
(
'
tries to install ingress
'
,
done
=>
{
spyOn
(
cluster
.
service
,
'
installApplication
'
).
and
.
returnValue
(
Promise
.
resolve
());
spyOn
(
cluster
.
service
,
'
installApplication
'
).
and
.
returnValue
(
Promise
.
resolve
());
expect
(
cluster
.
store
.
state
.
applications
.
ingress
.
requestStatus
).
toEqual
(
null
);
expect
(
cluster
.
store
.
state
.
applications
.
ingress
.
requestStatus
).
toEqual
(
null
);
cluster
.
installApplication
({
id
:
'
ingress
'
});
cluster
.
installApplication
({
id
:
'
ingress
'
});
expect
(
cluster
.
store
.
state
.
applications
.
ingress
.
requestStatus
).
toEqual
(
REQUEST_
SUBMITTED
);
expect
(
cluster
.
store
.
state
.
applications
.
ingress
.
requestStatus
).
toEqual
(
REQUEST_
LOADING
);
expect
(
cluster
.
store
.
state
.
applications
.
ingress
.
requestReason
).
toEqual
(
null
);
expect
(
cluster
.
store
.
state
.
applications
.
ingress
.
requestReason
).
toEqual
(
null
);
expect
(
cluster
.
service
.
installApplication
).
toHaveBeenCalledWith
(
'
ingress
'
,
undefined
);
expect
(
cluster
.
service
.
installApplication
).
toHaveBeenCalledWith
(
'
ingress
'
,
undefined
);
getSetTimeoutPromise
()
.
then
(()
=>
{
expect
(
cluster
.
store
.
state
.
applications
.
ingress
.
requestStatus
).
toEqual
(
REQUEST_SUCCESS
);
expect
(
cluster
.
store
.
state
.
applications
.
ingress
.
requestReason
).
toEqual
(
null
);
})
.
then
(
done
)
.
catch
(
done
.
fail
);
});
});
it
(
'
tries to install runner
'
,
()
=>
{
it
(
'
tries to install runner
'
,
done
=>
{
spyOn
(
cluster
.
service
,
'
installApplication
'
).
and
.
returnValue
(
Promise
.
resolve
());
spyOn
(
cluster
.
service
,
'
installApplication
'
).
and
.
returnValue
(
Promise
.
resolve
());
expect
(
cluster
.
store
.
state
.
applications
.
runner
.
requestStatus
).
toEqual
(
null
);
expect
(
cluster
.
store
.
state
.
applications
.
runner
.
requestStatus
).
toEqual
(
null
);
cluster
.
installApplication
({
id
:
'
runner
'
});
cluster
.
installApplication
({
id
:
'
runner
'
});
expect
(
cluster
.
store
.
state
.
applications
.
runner
.
requestStatus
).
toEqual
(
REQUEST_
SUBMITTED
);
expect
(
cluster
.
store
.
state
.
applications
.
runner
.
requestStatus
).
toEqual
(
REQUEST_
LOADING
);
expect
(
cluster
.
store
.
state
.
applications
.
runner
.
requestReason
).
toEqual
(
null
);
expect
(
cluster
.
store
.
state
.
applications
.
runner
.
requestReason
).
toEqual
(
null
);
expect
(
cluster
.
service
.
installApplication
).
toHaveBeenCalledWith
(
'
runner
'
,
undefined
);
expect
(
cluster
.
service
.
installApplication
).
toHaveBeenCalledWith
(
'
runner
'
,
undefined
);
getSetTimeoutPromise
()
.
then
(()
=>
{
expect
(
cluster
.
store
.
state
.
applications
.
runner
.
requestStatus
).
toEqual
(
REQUEST_SUCCESS
);
expect
(
cluster
.
store
.
state
.
applications
.
runner
.
requestReason
).
toEqual
(
null
);
})
.
then
(
done
)
.
catch
(
done
.
fail
);
});
});
it
(
'
tries to install jupyter
'
,
()
=>
{
it
(
'
tries to install jupyter
'
,
done
=>
{
spyOn
(
cluster
.
service
,
'
installApplication
'
).
and
.
returnValue
(
Promise
.
resolve
());
spyOn
(
cluster
.
service
,
'
installApplication
'
).
and
.
returnValue
(
Promise
.
resolve
());
expect
(
cluster
.
store
.
state
.
applications
.
jupyter
.
requestStatus
).
toEqual
(
null
);
expect
(
cluster
.
store
.
state
.
applications
.
jupyter
.
requestStatus
).
toEqual
(
null
);
...
@@ -236,11 +265,19 @@ describe('Clusters', () => {
...
@@ -236,11 +265,19 @@ describe('Clusters', () => {
params
:
{
hostname
:
cluster
.
store
.
state
.
applications
.
jupyter
.
hostname
},
params
:
{
hostname
:
cluster
.
store
.
state
.
applications
.
jupyter
.
hostname
},
});
});
expect
(
cluster
.
store
.
state
.
applications
.
jupyter
.
requestStatus
).
toEqual
(
REQUEST_
SUBMITTED
);
expect
(
cluster
.
store
.
state
.
applications
.
jupyter
.
requestStatus
).
toEqual
(
REQUEST_
LOADING
);
expect
(
cluster
.
store
.
state
.
applications
.
jupyter
.
requestReason
).
toEqual
(
null
);
expect
(
cluster
.
store
.
state
.
applications
.
jupyter
.
requestReason
).
toEqual
(
null
);
expect
(
cluster
.
service
.
installApplication
).
toHaveBeenCalledWith
(
'
jupyter
'
,
{
expect
(
cluster
.
service
.
installApplication
).
toHaveBeenCalledWith
(
'
jupyter
'
,
{
hostname
:
cluster
.
store
.
state
.
applications
.
jupyter
.
hostname
,
hostname
:
cluster
.
store
.
state
.
applications
.
jupyter
.
hostname
,
});
});
getSetTimeoutPromise
()
.
then
(()
=>
{
expect
(
cluster
.
store
.
state
.
applications
.
jupyter
.
requestStatus
).
toEqual
(
REQUEST_SUCCESS
);
expect
(
cluster
.
store
.
state
.
applications
.
jupyter
.
requestReason
).
toEqual
(
null
);
})
.
then
(
done
)
.
catch
(
done
.
fail
);
});
});
it
(
'
sets error request status when the request fails
'
,
done
=>
{
it
(
'
sets error request status when the request fails
'
,
done
=>
{
...
@@ -252,7 +289,7 @@ describe('Clusters', () => {
...
@@ -252,7 +289,7 @@ describe('Clusters', () => {
cluster
.
installApplication
({
id
:
'
helm
'
});
cluster
.
installApplication
({
id
:
'
helm
'
});
expect
(
cluster
.
store
.
state
.
applications
.
helm
.
requestStatus
).
toEqual
(
REQUEST_
SUBMITTED
);
expect
(
cluster
.
store
.
state
.
applications
.
helm
.
requestStatus
).
toEqual
(
REQUEST_
LOADING
);
expect
(
cluster
.
store
.
state
.
applications
.
helm
.
requestReason
).
toEqual
(
null
);
expect
(
cluster
.
store
.
state
.
applications
.
helm
.
requestReason
).
toEqual
(
null
);
expect
(
cluster
.
service
.
installApplication
).
toHaveBeenCalled
();
expect
(
cluster
.
service
.
installApplication
).
toHaveBeenCalled
();
...
...
spec/javascripts/clusters/components/application_row_spec.js
View file @
1414cfae
import
Vue
from
'
vue
'
;
import
Vue
from
'
vue
'
;
import
eventHub
from
'
~/clusters/event_hub
'
;
import
eventHub
from
'
~/clusters/event_hub
'
;
import
{
APPLICATION_STATUS
,
REQUEST_SUBMITTED
,
REQUEST_FAILURE
}
from
'
~/clusters/constants
'
;
import
{
APPLICATION_STATUS
,
REQUEST_LOADING
,
REQUEST_SUCCESS
,
REQUEST_FAILURE
,
}
from
'
~/clusters/constants
'
;
import
applicationRow
from
'
~/clusters/components/application_row.vue
'
;
import
applicationRow
from
'
~/clusters/components/application_row.vue
'
;
import
mountComponent
from
'
spec/helpers/vue_mount_component_helper
'
;
import
mountComponent
from
'
spec/helpers/vue_mount_component_helper
'
;
import
{
DEFAULT_APPLICATION_STATE
}
from
'
../services/mock_data
'
;
import
{
DEFAULT_APPLICATION_STATE
}
from
'
../services/mock_data
'
;
...
@@ -52,12 +57,6 @@ describe('Application Row', () => {
...
@@ -52,12 +57,6 @@ describe('Application Row', () => {
expect
(
vm
.
installButtonLabel
).
toBeUndefined
();
expect
(
vm
.
installButtonLabel
).
toBeUndefined
();
});
});
it
(
'
has install button
'
,
()
=>
{
const
installationBtn
=
vm
.
$el
.
querySelector
(
'
.js-cluster-application-install-button
'
);
expect
(
installationBtn
).
not
.
toBe
(
null
);
});
it
(
'
has disabled "Install" when APPLICATION_STATUS.NOT_INSTALLABLE
'
,
()
=>
{
it
(
'
has disabled "Install" when APPLICATION_STATUS.NOT_INSTALLABLE
'
,
()
=>
{
vm
=
mountComponent
(
ApplicationRow
,
{
vm
=
mountComponent
(
ApplicationRow
,
{
...
DEFAULT_APPLICATION_STATE
,
...
DEFAULT_APPLICATION_STATE
,
...
@@ -102,18 +101,6 @@ describe('Application Row', () => {
...
@@ -102,18 +101,6 @@ describe('Application Row', () => {
expect
(
vm
.
installButtonDisabled
).
toEqual
(
true
);
expect
(
vm
.
installButtonDisabled
).
toEqual
(
true
);
});
});
it
(
'
has loading "Installing" when REQUEST_SUBMITTED
'
,
()
=>
{
vm
=
mountComponent
(
ApplicationRow
,
{
...
DEFAULT_APPLICATION_STATE
,
status
:
APPLICATION_STATUS
.
INSTALLABLE
,
requestStatus
:
REQUEST_SUBMITTED
,
});
expect
(
vm
.
installButtonLabel
).
toEqual
(
'
Installing
'
);
expect
(
vm
.
installButtonLoading
).
toEqual
(
true
);
expect
(
vm
.
installButtonDisabled
).
toEqual
(
true
);
});
it
(
'
has disabled "Installed" when APPLICATION_STATUS.INSTALLED
'
,
()
=>
{
it
(
'
has disabled "Installed" when APPLICATION_STATUS.INSTALLED
'
,
()
=>
{
vm
=
mountComponent
(
ApplicationRow
,
{
vm
=
mountComponent
(
ApplicationRow
,
{
...
DEFAULT_APPLICATION_STATE
,
...
DEFAULT_APPLICATION_STATE
,
...
@@ -147,6 +134,30 @@ describe('Application Row', () => {
...
@@ -147,6 +134,30 @@ describe('Application Row', () => {
expect
(
vm
.
installButtonDisabled
).
toEqual
(
false
);
expect
(
vm
.
installButtonDisabled
).
toEqual
(
false
);
});
});
it
(
'
has loading "Install" when REQUEST_LOADING
'
,
()
=>
{
vm
=
mountComponent
(
ApplicationRow
,
{
...
DEFAULT_APPLICATION_STATE
,
status
:
APPLICATION_STATUS
.
INSTALLABLE
,
requestStatus
:
REQUEST_LOADING
,
});
expect
(
vm
.
installButtonLabel
).
toEqual
(
'
Install
'
);
expect
(
vm
.
installButtonLoading
).
toEqual
(
true
);
expect
(
vm
.
installButtonDisabled
).
toEqual
(
true
);
});
it
(
'
has disabled "Install" when REQUEST_SUCCESS
'
,
()
=>
{
vm
=
mountComponent
(
ApplicationRow
,
{
...
DEFAULT_APPLICATION_STATE
,
status
:
APPLICATION_STATUS
.
INSTALLABLE
,
requestStatus
:
REQUEST_SUCCESS
,
});
expect
(
vm
.
installButtonLabel
).
toEqual
(
'
Install
'
);
expect
(
vm
.
installButtonLoading
).
toEqual
(
false
);
expect
(
vm
.
installButtonDisabled
).
toEqual
(
true
);
});
it
(
'
has enabled "Install" when REQUEST_FAILURE (so you can try installing again)
'
,
()
=>
{
it
(
'
has enabled "Install" when REQUEST_FAILURE (so you can try installing again)
'
,
()
=>
{
vm
=
mountComponent
(
ApplicationRow
,
{
vm
=
mountComponent
(
ApplicationRow
,
{
...
DEFAULT_APPLICATION_STATE
,
...
DEFAULT_APPLICATION_STATE
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment