mirror of
https://github.com/neocities/neocities.git
synced 2025-04-24 17:22:35 +02:00
176 lines
No EOL
4.6 KiB
Ruby
176 lines
No EOL
4.6 KiB
Ruby
require_relative './environment.rb'
|
|
|
|
describe 'signup' do
|
|
include Capybara::DSL
|
|
|
|
def fill_in_valid
|
|
@site = Fabricate.attributes_for(:site)
|
|
fill_in 'username', with: @site[:username]
|
|
fill_in 'password', with: @site[:password]
|
|
fill_in 'email', with: @site[:email]
|
|
fill_in 'question_answer', with: 2
|
|
end
|
|
|
|
def click_signup_button
|
|
click_button 'Create My Site'
|
|
end
|
|
|
|
def site_created?
|
|
page.must_have_content 'Your Feed'
|
|
end
|
|
|
|
def visit_signup
|
|
visit '/'
|
|
end
|
|
|
|
before do
|
|
Capybara.default_driver = :poltergeist
|
|
Capybara.reset_sessions!
|
|
visit_signup
|
|
end
|
|
|
|
after do
|
|
Capybara.default_driver = :rack_test
|
|
end
|
|
|
|
it 'succeeds with valid data' do
|
|
Capybara.default_driver = :poltergeist
|
|
fill_in_valid
|
|
click_signup_button
|
|
site_created?.must_equal true
|
|
assert_equal(
|
|
true,
|
|
File.exist?(File.join(Site::SITE_FILES_ROOT, @site[:username], 'index.html'))
|
|
)
|
|
end
|
|
|
|
it 'fails to create for existing site' do
|
|
fill_in_valid
|
|
click_signup_button
|
|
page.must_have_content 'Your Feed'
|
|
Capybara.reset_sessions!
|
|
visit_signup
|
|
fill_in 'username', with: @site[:username]
|
|
fill_in 'password', with: @site[:password]
|
|
click_signup_button
|
|
page.must_have_content 'already taken'
|
|
end
|
|
|
|
it 'fails with missing password' do
|
|
fill_in_valid
|
|
fill_in 'password', with: ''
|
|
click_signup_button
|
|
page.must_have_content 'Password must be at least 5 characters'
|
|
end
|
|
|
|
it 'fails with short password' do
|
|
fill_in_valid
|
|
fill_in 'password', with: 'derp'
|
|
click_signup_button
|
|
page.must_have_content 'Password must be at least 5 characters'
|
|
end
|
|
|
|
it 'fails with invalid hostname for username' do
|
|
fill_in_valid
|
|
fill_in 'username', with: '|\|0p|E'
|
|
click_signup_button
|
|
page.must_have_content 'Usernames can only contain'
|
|
fill_in 'username', with: 'nope-'
|
|
click_signup_button
|
|
page.must_have_content 'A valid user/site name is required'
|
|
fill_in 'username', with: '-nope'
|
|
click_signup_button
|
|
page.must_have_content 'A valid user/site name is required'
|
|
end
|
|
|
|
it 'fails with username greater than 32 characters' do
|
|
fill_in_valid
|
|
fill_in 'username', with: SecureRandom.hex+'1'
|
|
click_signup_button
|
|
page.must_have_content 'cannot exceed 32 characters'
|
|
end
|
|
|
|
it 'fails with existing email' do
|
|
email = Fabricate.attributes_for(:site)[:email]
|
|
fill_in_valid
|
|
fill_in 'email', with: email
|
|
click_signup_button
|
|
site_created?.must_equal true
|
|
Capybara.reset_sessions!
|
|
visit_signup
|
|
fill_in_valid
|
|
fill_in 'email', with: email
|
|
click_signup_button
|
|
page.must_have_content /email.+exists/
|
|
end
|
|
|
|
=begin
|
|
it 'succeeds with no tags' do
|
|
fill_in_valid
|
|
fill_in 'new_tags_string', with: ''
|
|
click_signup_button
|
|
site_created?.must_equal true
|
|
end
|
|
|
|
it 'succeeds with a single tag' do
|
|
fill_in_valid
|
|
fill_in 'new_tags_string', with: 'derpie'
|
|
click_signup_button
|
|
site_created?.must_equal true
|
|
Site.last.tags.first.name.must_equal 'derpie'
|
|
end
|
|
|
|
it 'succeeds with valid tags' do
|
|
fill_in_valid
|
|
fill_in 'new_tags_string', with: 'derpie, shoujo'
|
|
click_signup_button
|
|
site_created?.must_equal true
|
|
Site.last.tags.collect {|t| t.name}.must_equal ['derpie', 'shoujo']
|
|
end
|
|
|
|
it 'fails with invalid tag chars' do
|
|
fill_in_valid
|
|
fill_in 'new_tags_string', with: '$POLICE OFFICER$$$$$, derp'
|
|
click_signup_button
|
|
page.must_have_content /Tag.+can only contain/
|
|
end
|
|
|
|
it 'fails for tag with too many spaces' do
|
|
fill_in_valid
|
|
fill_in 'new_tags_string', with: 'police officer, hi'
|
|
click_signup_button
|
|
page.must_have_content /Tag.+cannot have spaces/
|
|
end
|
|
|
|
it 'fails for tag with too many words' do
|
|
fill_in_valid
|
|
fill_in 'new_tags_string', with: 'police officer'
|
|
click_signup_button
|
|
page.must_have_content /Tag.+cannot be more than #{Tag::NAME_WORDS_MAX} word/
|
|
end
|
|
|
|
it "fails for tag longer than #{Tag::NAME_LENGTH_MAX} characters" do
|
|
fill_in_valid
|
|
fill_in 'new_tags_string', with: SecureRandom.hex(Tag::NAME_LENGTH_MAX)
|
|
click_signup_button
|
|
page.must_have_content /cannot be longer than #{Tag::NAME_LENGTH_MAX}/
|
|
end
|
|
|
|
it 'fails for too many tags' do
|
|
fill_in_valid
|
|
fill_in 'new_tags_string', with: 'one, two, three, four, five, six'
|
|
click_signup_button
|
|
page.must_have_content /Cannot have more than \d tags for your site/
|
|
end
|
|
|
|
it 'does not duplicate tags' do
|
|
fill_in_valid
|
|
fill_in 'new_tags_string', with: 'one, one'
|
|
click_signup_button
|
|
|
|
site = Site.last
|
|
site.tags.length.must_equal 1
|
|
site.tags.first.name.must_equal 'one'
|
|
end
|
|
=end
|
|
end |