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
8067efdf
Commit
8067efdf
authored
May 23, 2017
by
Pawel Chojnacki
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make the test cases more readable and fix to_s coercion problem
parent
1f10a3c2
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
19 deletions
+26
-19
spec/lib/gitlab/health_checks/fs_shards_check_spec.rb
spec/lib/gitlab/health_checks/fs_shards_check_spec.rb
+26
-19
No files found.
spec/lib/gitlab/health_checks/fs_shards_check_spec.rb
View file @
8067efdf
...
...
@@ -80,27 +80,30 @@ describe Gitlab::HealthChecks::FsShardsCheck do
}.
with_indifferent_access
end
it
{
is_expected
.
to
include
(
metric_class
.
new
(
:filesystem_accessible
,
0
,
shard: :default
))
}
it
{
is_expected
.
to
include
(
metric_class
.
new
(
:filesystem_readable
,
0
,
shard: :default
))
}
it
{
is_expected
.
to
include
(
metric_class
.
new
(
:filesystem_writable
,
0
,
shard: :default
))
}
it
{
is_expected
.
to
all
(
have_attributes
(
labels:
{
shard: :default
}))
}
it
{
is_expected
.
to
include
(
have_attributes
(
name: :filesystem_access_latency
,
value:
be
>=
0
,
labels:
{
shard: :default
}))
}
it
{
is_expected
.
to
include
(
have_attributes
(
name: :filesystem_read_latency
,
value:
be
>=
0
,
labels:
{
shard: :default
}))
}
it
{
is_expected
.
to
include
(
have_attributes
(
name: :filesystem_write_latency
,
value:
be
>=
0
,
labels:
{
shard: :default
}))
}
it
{
is_expected
.
to
include
(
an_object_having_attributes
(
name: :filesystem_accessible
,
value:
0
))
}
it
{
is_expected
.
to
include
(
an_object_having_attributes
(
name: :filesystem_readable
,
value:
0
))
}
it
{
is_expected
.
to
include
(
an_object_having_attributes
(
name: :filesystem_writable
,
value:
0
))
}
it
{
is_expected
.
to
include
(
an_object_having_attributes
(
name: :filesystem_access_latency
,
value:
be
>=
0
))
}
it
{
is_expected
.
to
include
(
an_object_having_attributes
(
name: :filesystem_read_latency
,
value:
be
>=
0
))
}
it
{
is_expected
.
to
include
(
an_object_having_attributes
(
name: :filesystem_write_latency
,
value:
be
>=
0
))
}
end
context
'storage points to directory that has both read and write rights'
do
before
do
FileUtils
.
chmod_R
(
0755
,
tmp_dir
)
end
it
{
is_expected
.
to
all
(
have_attributes
(
labels:
{
shard: :default
}))
}
it
{
is_expected
.
to
include
(
metric_class
.
new
(
:filesystem_accessible
,
1
,
shard: :default
))
}
it
{
is_expected
.
to
include
(
metric_class
.
new
(
:filesystem_readable
,
1
,
shard: :default
))
}
it
{
is_expected
.
to
include
(
metric_class
.
new
(
:filesystem_writable
,
1
,
shard: :default
))
}
it
{
is_expected
.
to
include
(
an_object_having_attributes
(
name: :filesystem_accessible
,
value:
1
))
}
it
{
is_expected
.
to
include
(
an_object_having_attributes
(
name: :filesystem_readable
,
value:
1
))
}
it
{
is_expected
.
to
include
(
an_object_having_attributes
(
name: :filesystem_writable
,
value:
1
))
}
it
{
is_expected
.
to
include
(
have_attributes
(
name: :filesystem_access_latency
,
value:
be
>=
0
,
labels:
{
shard: :default
}
))
}
it
{
is_expected
.
to
include
(
have_attributes
(
name: :filesystem_read_latency
,
value:
be
>=
0
,
labels:
{
shard: :default
}
))
}
it
{
is_expected
.
to
include
(
have_attributes
(
name: :filesystem_write_latency
,
value:
be
>=
0
,
labels:
{
shard: :default
}
))
}
it
{
is_expected
.
to
include
(
an_object_having_attributes
(
name: :filesystem_access_latency
,
value:
be
>=
0
))
}
it
{
is_expected
.
to
include
(
an_object_having_attributes
(
name: :filesystem_read_latency
,
value:
be
>=
0
))
}
it
{
is_expected
.
to
include
(
an_object_having_attributes
(
name: :filesystem_write_latency
,
value:
be
>=
0
))
}
end
end
end
...
...
@@ -109,7 +112,7 @@ describe Gitlab::HealthChecks::FsShardsCheck do
let
(
:timeout_seconds
)
{
1
.
to_s
}
before
do
allow
(
described_class
).
to
receive
(
:with_timeout
)
{
[
timeout_command
,
timeout_seconds
,
'sleep'
,
2
]
}
allow
(
described_class
).
to
receive
(
:with_timeout
)
{
[
timeout_command
,
timeout_seconds
,
'sleep'
,
'20'
]
}
FileUtils
.
chmod_R
(
0755
,
tmp_dir
)
end
...
...
@@ -122,13 +125,17 @@ describe Gitlab::HealthChecks::FsShardsCheck do
describe
'#metrics'
do
subject
{
described_class
.
metrics
}
it
{
is_expected
.
to
include
(
metric_class
.
new
(
:filesystem_accessible
,
0
,
shard: :default
))
}
it
{
is_expected
.
to
include
(
metric_class
.
new
(
:filesystem_readable
,
0
,
shard: :default
))
}
it
{
is_expected
.
to
include
(
metric_class
.
new
(
:filesystem_writable
,
0
,
shard: :default
))
}
it
'provides metrics'
do
expect
(
subject
).
to
all
(
have_attributes
(
labels:
{
shard: :default
}))
expect
(
subject
).
to
include
(
an_object_having_attributes
(
name: :filesystem_accessible
,
value:
0
))
expect
(
subject
).
to
include
(
an_object_having_attributes
(
name: :filesystem_readable
,
value:
0
))
expect
(
subject
).
to
include
(
an_object_having_attributes
(
name: :filesystem_writable
,
value:
0
))
it
{
is_expected
.
to
include
(
have_attributes
(
name: :filesystem_access_latency
,
value:
be
>=
0
,
labels:
{
shard: :default
}))
}
it
{
is_expected
.
to
include
(
have_attributes
(
name: :filesystem_read_latency
,
value:
be
>=
0
,
labels:
{
shard: :default
}))
}
it
{
is_expected
.
to
include
(
have_attributes
(
name: :filesystem_write_latency
,
value:
be
>=
0
,
labels:
{
shard: :default
}))
}
expect
(
subject
).
to
include
(
an_object_having_attributes
(
name: :filesystem_access_latency
,
value:
be
>=
0
))
expect
(
subject
).
to
include
(
an_object_having_attributes
(
name: :filesystem_read_latency
,
value:
be
>=
0
))
expect
(
subject
).
to
include
(
an_object_having_attributes
(
name: :filesystem_write_latency
,
value:
be
>=
0
))
end
end
end
...
...
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