Skip to content

Commit fb470e8

Browse files
committed
Validate username uniq in scope of namespace
1 parent a0bd09a commit fb470e8

File tree

4 files changed

+18
-12
lines changed

4 files changed

+18
-12
lines changed

app/models/user.rb

+8
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,8 @@ class User < ActiveRecord::Base
6767
message: "only letters, digits & '_' '-' '.' allowed. Letter should be first" }
6868

6969

70+
validate :namespace_uniq, if: ->(user) { user.username_changed? }
71+
7072
before_validation :generate_password, on: :create
7173
before_save :ensure_authentication_token
7274
alias_attribute :private_token, :authentication_token
@@ -135,6 +137,12 @@ def generate_password
135137
end
136138
end
137139

140+
def namespace_uniq
141+
namespace_name = self.username
142+
if Namespace.find_by_path(namespace_name)
143+
self.errors.add :username, "already exist"
144+
end
145+
end
138146

139147
# Namespaces user has access to
140148
def namespaces

app/views/profiles/account.html.haml

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
%i.icon-ok
7070
Saved
7171
%span.update-failed.cred.hide
72-
%i.icon-ok
72+
%i.icon-remove
7373
Failed
7474
%ul.cred
7575
%li It will change web url for personal projects.

features/steps/project/project_milestones.rb

+4-4
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,12 @@ class ProjectMilestones < Spinach::FeatureSteps
5050
end
5151

5252
Then "I should see 3 issues" do
53-
page.should have_selector('.milestone-issue-filter li', count: 4)
54-
page.should have_selector('.milestone-issue-filter li.hide', count: 1)
53+
page.should have_selector('.milestone-issue-filter .well-list li', count: 4)
54+
page.should have_selector('.milestone-issue-filter .well-list li.hide', count: 1)
5555
end
5656

5757
Then "I should see 4 issues" do
58-
page.should have_selector('.milestone-issue-filter li', count: 4)
59-
page.should_not have_selector('.milestone-issue-filter li.hide')
58+
page.should have_selector('.milestone-issue-filter .well-list li', count: 4)
59+
page.should_not have_selector('.milestone-issue-filter .well-list li.hide')
6060
end
6161
end

lib/tasks/travis.rake

+5-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
task :travis do
2-
["rake spinach", "rake spec"].each do |cmd|
3-
puts "Starting to run #{cmd}..."
4-
system("export DISPLAY=:99.0 && bundle exec #{cmd}")
5-
raise "#{cmd} failed!" unless $?.exitstatus == 0
6-
end
7-
end
1+
desc "Travis run tests"
2+
task :travis => [
3+
:spinach,
4+
:spec
5+
]

0 commit comments

Comments
 (0)