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
Boxiang Sun
gitlab-ce
Commits
7648f113
Commit
7648f113
authored
Jun 28, 2017
by
Jacob Vosmaer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unnecessary contexts
parent
81dba76b
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
74 additions
and
131 deletions
+74
-131
spec/lib/gitlab/git/repository_spec.rb
spec/lib/gitlab/git/repository_spec.rb
+66
-108
spec/lib/gitlab/gitaly_client/ref_spec.rb
spec/lib/gitlab/gitaly_client/ref_spec.rb
+0
-4
spec/models/environment_spec.rb
spec/models/environment_spec.rb
+8
-19
No files found.
spec/lib/gitlab/git/repository_spec.rb
View file @
7648f113
...
...
@@ -5,6 +5,11 @@ describe Gitlab::Git::Repository, seed_helper: true do
let
(
:repository
)
{
Gitlab
::
Git
::
Repository
.
new
(
'default'
,
TEST_REPO_PATH
)
}
after
do
# Prevent cached stubs (gRPC connection objects) from poisoning tests.
Gitlab
::
GitalyClient
.
clear_stubs!
end
describe
"Respond to"
do
subject
{
repository
}
...
...
@@ -30,15 +35,6 @@ describe Gitlab::Git::Repository, seed_helper: true do
expect
(
repository
.
root_ref
.
encoding
).
to
eq
(
Encoding
.
find
(
'UTF-8'
))
end
context
'with gitaly enabled'
do
before
do
stub_gitaly
end
after
do
Gitlab
::
GitalyClient
.
clear_stubs!
end
it
'gets the branch name from GitalyClient'
do
expect_any_instance_of
(
Gitlab
::
GitalyClient
::
Ref
).
to
receive
(
:default_branch_name
)
repository
.
root_ref
...
...
@@ -56,7 +52,6 @@ describe Gitlab::Git::Repository, seed_helper: true do
expect
{
repository
.
root_ref
}.
to
raise_error
(
Gitlab
::
Git
::
CommandError
)
end
end
end
describe
"#rugged"
do
context
'with no Git env stored'
do
...
...
@@ -135,15 +130,6 @@ describe Gitlab::Git::Repository, seed_helper: true do
it
{
is_expected
.
to
include
(
"master"
)
}
it
{
is_expected
.
not_to
include
(
"branch-from-space"
)
}
context
'with gitaly enabled'
do
before
do
stub_gitaly
end
after
do
Gitlab
::
GitalyClient
.
clear_stubs!
end
it
'gets the branch names from GitalyClient'
do
expect_any_instance_of
(
Gitlab
::
GitalyClient
::
Ref
).
to
receive
(
:branch_names
)
subject
...
...
@@ -161,7 +147,6 @@ describe Gitlab::Git::Repository, seed_helper: true do
expect
{
subject
}.
to
raise_error
(
Gitlab
::
Git
::
CommandError
)
end
end
end
describe
'#tag_names'
do
subject
{
repository
.
tag_names
}
...
...
@@ -183,15 +168,6 @@ describe Gitlab::Git::Repository, seed_helper: true do
it
{
is_expected
.
to
include
(
"v1.0.0"
)
}
it
{
is_expected
.
not_to
include
(
"v5.0.0"
)
}
context
'with gitaly enabled'
do
before
do
stub_gitaly
end
after
do
Gitlab
::
GitalyClient
.
clear_stubs!
end
it
'gets the tag names from GitalyClient'
do
expect_any_instance_of
(
Gitlab
::
GitalyClient
::
Ref
).
to
receive
(
:tag_names
)
subject
...
...
@@ -209,7 +185,6 @@ describe Gitlab::Git::Repository, seed_helper: true do
expect
{
subject
}.
to
raise_error
(
Gitlab
::
Git
::
CommandError
)
end
end
end
shared_examples
'archive check'
do
|
extenstion
|
it
{
expect
(
metadata
[
'ArchivePath'
]).
to
match
(
/tmp\/gitlab-git-test.git\/gitlab-git-test-master-
#{
SeedRepo
::
LastCommit
::
ID
}
/
)
}
...
...
@@ -1281,15 +1256,6 @@ describe Gitlab::Git::Repository, seed_helper: true do
expect
(
@repo
.
local_branches
.
any?
{
|
branch
|
branch
.
name
==
'local_branch'
}).
to
eq
(
true
)
end
context
'with gitaly enabled'
do
before
do
stub_gitaly
end
after
do
Gitlab
::
GitalyClient
.
clear_stubs!
end
it
'returns a Branch with UTF-8 fields'
do
branches
=
@repo
.
local_branches
.
to_a
expect
(
branches
.
size
).
to
be
>
0
...
...
@@ -1318,7 +1284,6 @@ describe Gitlab::Git::Repository, seed_helper: true do
expect
{
@repo
.
local_branches
}.
to
raise_error
(
Gitlab
::
Git
::
CommandError
)
end
end
end
def
create_remote_branch
(
remote_name
,
branch_name
,
source_branch_name
)
source_branch
=
@repo
.
branches
.
find
{
|
branch
|
branch
.
name
==
source_branch_name
}
...
...
@@ -1395,11 +1360,4 @@ describe Gitlab::Git::Repository, seed_helper: true do
sha
=
Rugged
::
Commit
.
create
(
repo
,
options
)
repo
.
lookup
(
sha
)
end
def
stub_gitaly
allow
(
Gitlab
::
GitalyClient
).
to
receive
(
:feature_enabled?
).
and_return
(
true
)
stub
=
double
(
:stub
)
allow
(
Gitaly
::
Ref
::
Stub
).
to
receive
(
:new
).
and_return
(
stub
)
end
end
spec/lib/gitlab/gitaly_client/ref_spec.rb
View file @
7648f113
...
...
@@ -6,10 +6,6 @@ describe Gitlab::GitalyClient::Ref do
let
(
:relative_path
)
{
project
.
path_with_namespace
+
'.git'
}
let
(
:client
)
{
described_class
.
new
(
project
.
repository
)
}
before
do
allow
(
Gitlab
.
config
.
gitaly
).
to
receive
(
:enabled
).
and_return
(
true
)
end
after
do
# When we say `expect_any_instance_of(Gitaly::Ref::Stub)` a double is created,
# and because GitalyClient shares stubs these will get passed from example to
...
...
spec/models/environment_spec.rb
View file @
7648f113
...
...
@@ -120,7 +120,6 @@ describe Environment, models: true do
let
(
:head_commit
)
{
project
.
commit
}
let
(
:commit
)
{
project
.
commit
.
parent
}
context
'Gitaly find_ref_name feature disabled'
do
it
'returns deployment id for the environment'
do
expect
(
environment
.
first_deployment_for
(
commit
)).
to
eq
deployment1
end
...
...
@@ -128,20 +127,10 @@ describe Environment, models: true do
it
'return nil when no deployment is found'
do
expect
(
environment
.
first_deployment_for
(
head_commit
)).
to
eq
nil
end
end
# TODO: Uncomment when feature is reenabled
# context 'Gitaly find_ref_name feature enabled' do
# before do
# allow(Gitlab::GitalyClient).to receive(:feature_enabled?).with(:find_ref_name).and_return(true)
# end
#
# it 'calls GitalyClient' do
# expect_any_instance_of(Gitlab::GitalyClient::Ref).to receive(:find_ref_name)
#
# environment.first_deployment_for(commit)
# end
# end
it
'returns a UTF-8 ref'
do
expect
(
environment
.
first_deployment_for
(
commit
).
ref
).
to
be_utf8
end
end
describe
'#environment_type'
do
...
...
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