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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
f9364929
Commit
f9364929
authored
Nov 07, 2017
by
Alessio Caiazza
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename application_helm factory to cluster_application_helm
parent
8638cf66
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
14 additions
and
18 deletions
+14
-18
spec/factories/clusters/applications/helm.rb
spec/factories/clusters/applications/helm.rb
+2
-6
spec/models/clusters/applications/helm_spec.rb
spec/models/clusters/applications/helm_spec.rb
+5
-5
spec/serializers/cluster_application_entity_spec.rb
spec/serializers/cluster_application_entity_spec.rb
+2
-2
spec/services/clusters/applications/check_installation_progress_service_spec.rb
.../applications/check_installation_progress_service_spec.rb
+2
-2
spec/services/clusters/applications/install_service_spec.rb
spec/services/clusters/applications/install_service_spec.rb
+2
-2
spec/services/clusters/applications/schedule_installation_service_spec.rb
...usters/applications/schedule_installation_service_spec.rb
+1
-1
No files found.
spec/factories/clusters/applications/helm.rb
View file @
f9364929
FactoryGirl
.
define
do
factory
:applications_helm
,
class:
Clusters
::
Applications
::
Helm
do
trait
:cluster
do
before
(
:create
)
do
|
app
,
_
|
app
.
cluster
=
create
(
:cluster
)
end
end
factory
:cluster_applications_helm
,
class:
Clusters
::
Applications
::
Helm
do
cluster
factory: :cluster
trait
:installable
do
cluster
...
...
spec/models/clusters/applications/helm_spec.rb
View file @
f9364929
...
...
@@ -28,7 +28,7 @@ RSpec.describe Clusters::Applications::Helm, type: :model do
describe
'status state machine'
do
describe
'#make_installing'
do
subject
{
create
(
:applications_helm
,
:scheduled
)
}
subject
{
create
(
:
cluster_
applications_helm
,
:scheduled
)
}
it
'is installing'
do
subject
.
make_installing!
...
...
@@ -38,7 +38,7 @@ RSpec.describe Clusters::Applications::Helm, type: :model do
end
describe
'#make_installed'
do
subject
{
create
(
:applications_helm
,
:installing
)
}
subject
{
create
(
:
cluster_
applications_helm
,
:installing
)
}
it
'is installed'
do
subject
.
make_installed
...
...
@@ -48,7 +48,7 @@ RSpec.describe Clusters::Applications::Helm, type: :model do
end
describe
'#make_errored'
do
subject
{
create
(
:applications_helm
,
:installing
)
}
subject
{
create
(
:
cluster_
applications_helm
,
:installing
)
}
let
(
:reason
)
{
'some errors'
}
it
'is errored'
do
...
...
@@ -60,7 +60,7 @@ RSpec.describe Clusters::Applications::Helm, type: :model do
end
describe
'#make_scheduled'
do
subject
{
create
(
:applications_helm
,
:installable
)
}
subject
{
create
(
:
cluster_
applications_helm
,
:installable
)
}
it
'is scheduled'
do
subject
.
make_scheduled
...
...
@@ -69,7 +69,7 @@ RSpec.describe Clusters::Applications::Helm, type: :model do
end
describe
'when was errored'
do
subject
{
create
(
:applications_helm
,
:errored
)
}
subject
{
create
(
:
cluster_
applications_helm
,
:errored
)
}
it
'clears #status_reason'
do
expect
(
subject
.
status_reason
).
not_to
be_nil
...
...
spec/serializers/cluster_application_entity_spec.rb
View file @
f9364929
...
...
@@ -2,7 +2,7 @@ require 'spec_helper'
describe
ClusterApplicationEntity
do
describe
'#as_json'
do
let
(
:application
)
{
build
(
:applications_helm
)
}
let
(
:application
)
{
build
(
:
cluster_
applications_helm
)
}
subject
{
described_class
.
new
(
application
).
as_json
}
it
'has name'
do
...
...
@@ -18,7 +18,7 @@ describe ClusterApplicationEntity do
end
context
'when application is errored'
do
let
(
:application
)
{
build
(
:applications_helm
,
:errored
)
}
let
(
:application
)
{
build
(
:
cluster_
applications_helm
,
:errored
)
}
it
'has corresponded data'
do
expect
(
subject
[
:status
]).
to
eq
(
:errored
)
...
...
spec/services/clusters/applications/check_installation_progress_service_spec.rb
View file @
f9364929
...
...
@@ -3,7 +3,7 @@ require 'spec_helper'
describe
Clusters
::
Applications
::
CheckInstallationProgressService
do
RESCHEDULE_PHASES
=
Gitlab
::
Kubernetes
::
Pod
::
PHASES
-
[
Gitlab
::
Kubernetes
::
Pod
::
SUCCEEDED
,
Gitlab
::
Kubernetes
::
Pod
::
FAILED
].
freeze
let
(
:application
)
{
create
(
:applications_helm
,
:installing
)
}
let
(
:application
)
{
create
(
:
cluster_
applications_helm
,
:installing
)
}
let
(
:service
)
{
described_class
.
new
(
application
)
}
let
(
:phase
)
{
Gitlab
::
Kubernetes
::
Pod
::
UNKNOWN
}
let
(
:errors
)
{
nil
}
...
...
@@ -33,7 +33,7 @@ describe Clusters::Applications::CheckInstallationProgressService do
end
context
'when timeouted'
do
let
(
:application
)
{
create
(
:applications_helm
,
:timeouted
)
}
let
(
:application
)
{
create
(
:
cluster_
applications_helm
,
:timeouted
)
}
it_behaves_like
'a terminated installation'
...
...
spec/services/clusters/applications/install_service_spec.rb
View file @
f9364929
...
...
@@ -2,7 +2,7 @@ require 'spec_helper'
describe
Clusters
::
Applications
::
InstallService
do
describe
'#execute'
do
let
(
:application
)
{
create
(
:applications_helm
,
:scheduled
)
}
let
(
:application
)
{
create
(
:
cluster_
applications_helm
,
:scheduled
)
}
let
(
:service
)
{
described_class
.
new
(
application
)
}
context
'when there are no errors'
do
...
...
@@ -39,7 +39,7 @@ describe Clusters::Applications::InstallService do
end
context
'when application cannot be persisted'
do
let
(
:application
)
{
build
(
:applications_helm
,
:scheduled
)
}
let
(
:application
)
{
build
(
:
cluster_
applications_helm
,
:scheduled
)
}
it
'make the application errored'
do
expect
(
application
).
to
receive
(
:make_installing!
).
once
.
and_raise
(
ActiveRecord
::
RecordInvalid
)
...
...
spec/services/clusters/applications/schedule_installation_service_spec.rb
View file @
f9364929
...
...
@@ -32,7 +32,7 @@ describe Clusters::Applications::ScheduleInstallationService do
end
context
'when installation is already in progress'
do
let
(
:application
)
{
create
(
:applications_helm
,
:installing
)
}
let
(
:application
)
{
create
(
:
cluster_
applications_helm
,
:installing
)
}
let
(
:cluster
)
{
application
.
cluster
}
it_behaves_like
'a failing service'
...
...
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