2019-10-12 21:52:04 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-27 19:54:05 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
2019-12-21 20:55:43 +05:30
|
|
|
shared_examples 'Signup' do
|
2018-10-15 14:42:47 +05:30
|
|
|
include TermsHelper
|
|
|
|
|
2018-03-27 19:54:05 +05:30
|
|
|
let(:new_user) { build_stubbed(:user) }
|
|
|
|
|
|
|
|
describe 'username validation', :js do
|
|
|
|
before do
|
2019-12-21 20:55:43 +05:30
|
|
|
visit new_user_registration_path
|
2018-03-27 19:54:05 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not show an error border if the username is available' do
|
|
|
|
fill_in 'new_user_username', with: 'new-user'
|
|
|
|
wait_for_requests
|
|
|
|
|
|
|
|
expect(find('.username')).not_to have_css '.gl-field-error-outline'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not show an error border if the username contains dots (.)' do
|
2019-09-30 21:07:59 +05:30
|
|
|
simulate_input('#new_user_username', 'new.user.username')
|
2018-03-27 19:54:05 +05:30
|
|
|
wait_for_requests
|
|
|
|
|
|
|
|
expect(find('.username')).not_to have_css '.gl-field-error-outline'
|
|
|
|
end
|
|
|
|
|
2019-09-04 21:01:54 +05:30
|
|
|
it 'does not show an error border if the username length is not longer than 255 characters' do
|
|
|
|
fill_in 'new_user_username', with: 'u' * 255
|
|
|
|
wait_for_requests
|
|
|
|
|
|
|
|
expect(find('.username')).not_to have_css '.gl-field-error-outline'
|
|
|
|
end
|
|
|
|
|
2018-03-27 19:54:05 +05:30
|
|
|
it 'shows an error border if the username already exists' do
|
|
|
|
existing_user = create(:user)
|
|
|
|
|
|
|
|
fill_in 'new_user_username', with: existing_user.username
|
|
|
|
wait_for_requests
|
|
|
|
|
|
|
|
expect(find('.username')).to have_css '.gl-field-error-outline'
|
|
|
|
end
|
|
|
|
|
2019-09-30 21:07:59 +05:30
|
|
|
it 'shows a success border if the username is available' do
|
|
|
|
fill_in 'new_user_username', with: 'new-user'
|
|
|
|
wait_for_requests
|
|
|
|
|
|
|
|
expect(find('.username')).to have_css '.gl-field-success-outline'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'shows an error border if the username contains special characters' do
|
2018-03-27 19:54:05 +05:30
|
|
|
fill_in 'new_user_username', with: 'new$user!username'
|
|
|
|
wait_for_requests
|
|
|
|
|
|
|
|
expect(find('.username')).to have_css '.gl-field-error-outline'
|
|
|
|
end
|
2018-11-08 19:23:39 +05:30
|
|
|
|
2019-09-04 21:01:54 +05:30
|
|
|
it 'shows an error border if the username is longer than 255 characters' do
|
|
|
|
fill_in 'new_user_username', with: 'u' * 256
|
|
|
|
wait_for_requests
|
|
|
|
|
|
|
|
expect(find('.username')).to have_css '.gl-field-error-outline'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'shows an error message if the username is longer than 255 characters' do
|
|
|
|
fill_in 'new_user_username', with: 'u' * 256
|
|
|
|
wait_for_requests
|
|
|
|
|
|
|
|
expect(page).to have_content("Username is too long (maximum is 255 characters).")
|
|
|
|
end
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
it 'shows an error message on submit if the username contains special characters' do
|
|
|
|
fill_in 'new_user_username', with: 'new$user!username'
|
|
|
|
wait_for_requests
|
|
|
|
|
|
|
|
click_button "Register"
|
|
|
|
|
|
|
|
expect(page).to have_content("Please create a username with only alphanumeric characters.")
|
|
|
|
end
|
2019-07-07 11:18:12 +05:30
|
|
|
|
2019-09-30 21:07:59 +05:30
|
|
|
it 'shows an error border if the username contains emojis' do
|
2019-07-07 11:18:12 +05:30
|
|
|
simulate_input('#new_user_username', 'ehsan😀')
|
|
|
|
|
|
|
|
expect(find('.username')).to have_css '.gl-field-error-outline'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'shows an error message if the username contains emojis' do
|
|
|
|
simulate_input('#new_user_username', 'ehsan😀')
|
|
|
|
|
|
|
|
expect(page).to have_content("Invalid input, please avoid emojis")
|
|
|
|
end
|
2019-09-30 21:07:59 +05:30
|
|
|
|
|
|
|
it 'shows a pending message if the username availability is being fetched', :quarantine do
|
|
|
|
fill_in 'new_user_username', with: 'new-user'
|
|
|
|
|
|
|
|
expect(find('.username > .validation-pending')).not_to have_css '.hide'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'shows a success message if the username is available' do
|
|
|
|
fill_in 'new_user_username', with: 'new-user'
|
|
|
|
wait_for_requests
|
|
|
|
|
|
|
|
expect(find('.username > .validation-success')).not_to have_css '.hide'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'shows an error message if the username is unavailable' do
|
|
|
|
existing_user = create(:user)
|
|
|
|
|
|
|
|
fill_in 'new_user_username', with: existing_user.username
|
|
|
|
wait_for_requests
|
|
|
|
|
|
|
|
expect(find('.username > .validation-error')).not_to have_css '.hide'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'shows a success message if the username is corrected and then available' do
|
|
|
|
fill_in 'new_user_username', with: 'new-user$'
|
|
|
|
wait_for_requests
|
|
|
|
fill_in 'new_user_username', with: 'new-user'
|
|
|
|
wait_for_requests
|
|
|
|
|
|
|
|
expect(page).to have_content("Username is available.")
|
|
|
|
end
|
2019-07-07 11:18:12 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
describe 'user\'s full name validation', :js do
|
|
|
|
before do
|
2019-12-21 20:55:43 +05:30
|
|
|
if Gitlab::Experimentation.enabled?(:signup_flow)
|
|
|
|
user = create(:user, role: nil)
|
|
|
|
sign_in(user)
|
|
|
|
visit users_sign_up_welcome_path
|
|
|
|
@user_name_field = 'user_name'
|
|
|
|
else
|
|
|
|
visit new_user_registration_path
|
|
|
|
@user_name_field = 'new_user_name'
|
|
|
|
end
|
2019-09-04 21:01:54 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not show an error border if the user\'s fullname length is not longer than 128 characters' do
|
2019-12-21 20:55:43 +05:30
|
|
|
fill_in @user_name_field, with: 'u' * 128
|
2019-09-04 21:01:54 +05:30
|
|
|
|
|
|
|
expect(find('.name')).not_to have_css '.gl-field-error-outline'
|
2019-07-07 11:18:12 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it 'shows an error border if the user\'s fullname contains an emoji' do
|
2019-12-21 20:55:43 +05:30
|
|
|
simulate_input("##{@user_name_field}", 'Ehsan 🦋')
|
2019-09-04 21:01:54 +05:30
|
|
|
|
|
|
|
expect(find('.name')).to have_css '.gl-field-error-outline'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'shows an error border if the user\'s fullname is longer than 128 characters' do
|
2019-12-21 20:55:43 +05:30
|
|
|
fill_in @user_name_field, with: 'n' * 129
|
2019-09-04 21:01:54 +05:30
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
expect(find('.name')).to have_css '.gl-field-error-outline'
|
|
|
|
end
|
|
|
|
|
2019-09-04 21:01:54 +05:30
|
|
|
it 'shows an error message if the user\'s fullname is longer than 128 characters' do
|
2019-12-21 20:55:43 +05:30
|
|
|
fill_in @user_name_field, with: 'n' * 129
|
2019-09-04 21:01:54 +05:30
|
|
|
|
|
|
|
expect(page).to have_content("Name is too long (maximum is 128 characters).")
|
|
|
|
end
|
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
it 'shows an error message if the username contains emojis' do
|
2019-12-21 20:55:43 +05:30
|
|
|
simulate_input("##{@user_name_field}", 'Ehsan 🦋')
|
2019-09-04 21:01:54 +05:30
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
expect(page).to have_content("Invalid input, please avoid emojis")
|
|
|
|
end
|
2018-03-27 19:54:05 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
context 'with no errors' do
|
2019-10-12 21:52:04 +05:30
|
|
|
context 'when sending confirmation email' do
|
2018-03-27 19:54:05 +05:30
|
|
|
before do
|
|
|
|
stub_application_setting(send_user_confirmation_email: true)
|
|
|
|
end
|
|
|
|
|
2019-10-12 21:52:04 +05:30
|
|
|
context 'when soft email confirmation is not enabled' do
|
|
|
|
before do
|
|
|
|
stub_feature_flags(soft_email_confirmation: false)
|
|
|
|
end
|
2018-03-27 19:54:05 +05:30
|
|
|
|
2019-10-12 21:52:04 +05:30
|
|
|
it 'creates the user account and sends a confirmation email' do
|
2019-12-21 20:55:43 +05:30
|
|
|
visit new_user_registration_path
|
|
|
|
|
|
|
|
fill_in 'new_user_username', with: new_user.username
|
|
|
|
fill_in 'new_user_email', with: new_user.email
|
2019-10-12 21:52:04 +05:30
|
|
|
|
2019-12-21 20:55:43 +05:30
|
|
|
unless Gitlab::Experimentation.enabled?(:signup_flow)
|
|
|
|
fill_in 'new_user_name', with: new_user.name
|
|
|
|
fill_in 'new_user_email_confirmation', with: new_user.email
|
|
|
|
end
|
|
|
|
|
|
|
|
fill_in 'new_user_password', with: new_user.password
|
2019-10-12 21:52:04 +05:30
|
|
|
|
|
|
|
expect { click_button 'Register' }.to change { User.count }.by(1)
|
|
|
|
|
|
|
|
expect(current_path).to eq users_almost_there_path
|
|
|
|
expect(page).to have_content('Please check your email to confirm your account')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when soft email confirmation is enabled' do
|
|
|
|
before do
|
|
|
|
stub_feature_flags(soft_email_confirmation: true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'creates the user account and sends a confirmation email' do
|
2019-12-21 20:55:43 +05:30
|
|
|
visit new_user_registration_path
|
|
|
|
|
|
|
|
fill_in 'new_user_username', with: new_user.username
|
|
|
|
fill_in 'new_user_email', with: new_user.email
|
|
|
|
|
|
|
|
unless Gitlab::Experimentation.enabled?(:signup_flow)
|
|
|
|
fill_in 'new_user_name', with: new_user.name
|
|
|
|
fill_in 'new_user_email_confirmation', with: new_user.email
|
|
|
|
end
|
2019-10-12 21:52:04 +05:30
|
|
|
|
2019-12-21 20:55:43 +05:30
|
|
|
fill_in 'new_user_password', with: new_user.password
|
2018-03-27 19:54:05 +05:30
|
|
|
|
2019-10-12 21:52:04 +05:30
|
|
|
expect { click_button 'Register' }.to change { User.count }.by(1)
|
2018-03-27 19:54:05 +05:30
|
|
|
|
2019-12-21 20:55:43 +05:30
|
|
|
if Gitlab::Experimentation.enabled?(:signup_flow)
|
|
|
|
expect(current_path).to eq users_sign_up_welcome_path
|
|
|
|
else
|
|
|
|
expect(current_path).to eq dashboard_projects_path
|
|
|
|
expect(page).to have_content("Please check your email (#{new_user.email}) to verify that you own this address.")
|
|
|
|
end
|
2019-10-12 21:52:04 +05:30
|
|
|
end
|
2018-03-27 19:54:05 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when sigining up with different cased emails" do
|
|
|
|
it "creates the user successfully" do
|
2019-12-21 20:55:43 +05:30
|
|
|
visit new_user_registration_path
|
|
|
|
|
|
|
|
fill_in 'new_user_username', with: new_user.username
|
|
|
|
fill_in 'new_user_email', with: new_user.email
|
2018-03-27 19:54:05 +05:30
|
|
|
|
2019-12-21 20:55:43 +05:30
|
|
|
unless Gitlab::Experimentation.enabled?(:signup_flow)
|
|
|
|
fill_in 'new_user_name', with: new_user.name
|
|
|
|
fill_in 'new_user_email_confirmation', with: new_user.email.capitalize
|
|
|
|
end
|
|
|
|
|
|
|
|
fill_in 'new_user_password', with: new_user.password
|
2018-03-27 19:54:05 +05:30
|
|
|
click_button "Register"
|
|
|
|
|
2019-12-21 20:55:43 +05:30
|
|
|
if Gitlab::Experimentation.enabled?(:signup_flow)
|
|
|
|
expect(current_path).to eq users_sign_up_welcome_path
|
|
|
|
else
|
|
|
|
expect(current_path).to eq dashboard_projects_path
|
|
|
|
expect(page).to have_content("Welcome! You have signed up successfully.")
|
|
|
|
end
|
2018-03-27 19:54:05 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when not sending confirmation email" do
|
|
|
|
before do
|
|
|
|
stub_application_setting(send_user_confirmation_email: false)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'creates the user account and goes to dashboard' do
|
2019-12-21 20:55:43 +05:30
|
|
|
visit new_user_registration_path
|
2018-03-27 19:54:05 +05:30
|
|
|
|
2019-12-21 20:55:43 +05:30
|
|
|
fill_in 'new_user_username', with: new_user.username
|
|
|
|
fill_in 'new_user_email', with: new_user.email
|
|
|
|
|
|
|
|
unless Gitlab::Experimentation.enabled?(:signup_flow)
|
|
|
|
fill_in 'new_user_name', with: new_user.name
|
|
|
|
fill_in 'new_user_email_confirmation', with: new_user.email
|
|
|
|
end
|
|
|
|
|
|
|
|
fill_in 'new_user_password', with: new_user.password
|
2018-03-27 19:54:05 +05:30
|
|
|
click_button "Register"
|
|
|
|
|
2019-12-21 20:55:43 +05:30
|
|
|
if Gitlab::Experimentation.enabled?(:signup_flow)
|
|
|
|
expect(current_path).to eq users_sign_up_welcome_path
|
|
|
|
else
|
|
|
|
expect(current_path).to eq dashboard_projects_path
|
|
|
|
expect(page).to have_content("Welcome! You have signed up successfully.")
|
|
|
|
end
|
2018-03-27 19:54:05 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with errors' do
|
|
|
|
it "displays the errors" do
|
|
|
|
existing_user = create(:user)
|
|
|
|
|
2019-12-21 20:55:43 +05:30
|
|
|
visit new_user_registration_path
|
|
|
|
|
|
|
|
unless Gitlab::Experimentation.enabled?(:signup_flow)
|
|
|
|
fill_in 'new_user_name', with: new_user.name
|
|
|
|
end
|
2018-03-27 19:54:05 +05:30
|
|
|
|
|
|
|
fill_in 'new_user_username', with: new_user.username
|
2019-12-21 20:55:43 +05:30
|
|
|
fill_in 'new_user_email', with: existing_user.email
|
2018-03-27 19:54:05 +05:30
|
|
|
fill_in 'new_user_password', with: new_user.password
|
|
|
|
click_button "Register"
|
|
|
|
|
|
|
|
expect(current_path).to eq user_registration_path
|
2019-12-21 20:55:43 +05:30
|
|
|
|
|
|
|
if Gitlab::Experimentation.enabled?(:signup_flow)
|
|
|
|
expect(page).to have_content("error prohibited this user from being saved")
|
|
|
|
else
|
|
|
|
expect(page).to have_content("errors prohibited this user from being saved")
|
|
|
|
expect(page).to have_content("Email confirmation doesn't match")
|
|
|
|
end
|
|
|
|
|
2018-03-27 19:54:05 +05:30
|
|
|
expect(page).to have_content("Email has already been taken")
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not redisplay the password' do
|
|
|
|
existing_user = create(:user)
|
|
|
|
|
2019-12-21 20:55:43 +05:30
|
|
|
visit new_user_registration_path
|
|
|
|
|
|
|
|
unless Gitlab::Experimentation.enabled?(:signup_flow)
|
|
|
|
fill_in 'new_user_name', with: new_user.name
|
|
|
|
end
|
2018-03-27 19:54:05 +05:30
|
|
|
|
|
|
|
fill_in 'new_user_username', with: new_user.username
|
2019-12-21 20:55:43 +05:30
|
|
|
fill_in 'new_user_email', with: existing_user.email
|
2018-03-27 19:54:05 +05:30
|
|
|
fill_in 'new_user_password', with: new_user.password
|
|
|
|
click_button "Register"
|
|
|
|
|
|
|
|
expect(current_path).to eq user_registration_path
|
|
|
|
expect(page.body).not_to match(/#{new_user.password}/)
|
|
|
|
end
|
|
|
|
end
|
2018-10-15 14:42:47 +05:30
|
|
|
|
|
|
|
context 'when terms are enforced' do
|
|
|
|
before do
|
|
|
|
enforce_terms
|
|
|
|
end
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
it 'requires the user to check the checkbox' do
|
2019-12-21 20:55:43 +05:30
|
|
|
visit new_user_registration_path
|
2018-10-15 14:42:47 +05:30
|
|
|
|
2019-12-21 20:55:43 +05:30
|
|
|
fill_in 'new_user_username', with: new_user.username
|
|
|
|
fill_in 'new_user_email', with: new_user.email
|
|
|
|
|
|
|
|
unless Gitlab::Experimentation.enabled?(:signup_flow)
|
|
|
|
fill_in 'new_user_name', with: new_user.name
|
|
|
|
fill_in 'new_user_email_confirmation', with: new_user.email
|
|
|
|
end
|
|
|
|
|
|
|
|
fill_in 'new_user_password', with: new_user.password
|
2018-10-15 14:42:47 +05:30
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
click_button 'Register'
|
|
|
|
|
|
|
|
expect(current_path).to eq new_user_session_path
|
|
|
|
expect(page).to have_content(/you must accept our terms of service/i)
|
|
|
|
end
|
2018-10-15 14:42:47 +05:30
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
it 'asks the user to accept terms before going to the dashboard' do
|
2019-12-21 20:55:43 +05:30
|
|
|
visit new_user_registration_path
|
2018-11-08 19:23:39 +05:30
|
|
|
|
2019-12-21 20:55:43 +05:30
|
|
|
fill_in 'new_user_username', with: new_user.username
|
|
|
|
fill_in 'new_user_email', with: new_user.email
|
|
|
|
|
|
|
|
unless Gitlab::Experimentation.enabled?(:signup_flow)
|
|
|
|
fill_in 'new_user_name', with: new_user.name
|
|
|
|
fill_in 'new_user_email_confirmation', with: new_user.email
|
|
|
|
end
|
|
|
|
|
|
|
|
fill_in 'new_user_password', with: new_user.password
|
2018-11-08 19:23:39 +05:30
|
|
|
check :terms_opt_in
|
|
|
|
|
|
|
|
click_button "Register"
|
2018-10-15 14:42:47 +05:30
|
|
|
|
2019-12-21 20:55:43 +05:30
|
|
|
if Gitlab::Experimentation.enabled?(:signup_flow)
|
|
|
|
expect(current_path).to eq users_sign_up_welcome_path
|
|
|
|
else
|
|
|
|
expect(current_path).to eq dashboard_projects_path
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when reCAPTCHA and invisible captcha are enabled' do
|
|
|
|
before do
|
|
|
|
InvisibleCaptcha.timestamp_enabled = true
|
|
|
|
stub_application_setting(recaptcha_enabled: true)
|
|
|
|
allow_any_instance_of(RegistrationsController).to receive(:verify_recaptcha).and_return(false)
|
|
|
|
end
|
|
|
|
|
|
|
|
after do
|
|
|
|
InvisibleCaptcha.timestamp_enabled = false
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'prevents from signing up' do
|
|
|
|
visit new_user_registration_path
|
|
|
|
|
|
|
|
fill_in 'new_user_username', with: new_user.username
|
|
|
|
fill_in 'new_user_email', with: new_user.email
|
|
|
|
|
|
|
|
unless Gitlab::Experimentation.enabled?(:signup_flow)
|
|
|
|
fill_in 'new_user_name', with: new_user.name
|
|
|
|
fill_in 'new_user_email_confirmation', with: new_user.email
|
|
|
|
end
|
|
|
|
|
|
|
|
fill_in 'new_user_password', with: new_user.password
|
|
|
|
|
|
|
|
expect { click_button 'Register' }.not_to change { User.count }
|
|
|
|
|
|
|
|
if Gitlab::Experimentation.enabled?(:signup_flow)
|
|
|
|
expect(page).to have_content('That was a bit too quick! Please resubmit.')
|
|
|
|
else
|
|
|
|
expect(page).to have_content('There was an error with the reCAPTCHA. Please solve the reCAPTCHA again.')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'With original flow' do
|
|
|
|
before do
|
|
|
|
stub_experiment(signup_flow: false)
|
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'Signup'
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'With experimental flow' do
|
|
|
|
before do
|
|
|
|
stub_experiment(signup_flow: true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'Signup'
|
|
|
|
|
|
|
|
describe 'when role is required' do
|
|
|
|
it 'after registering, it redirects to step 2 of the signup process, sets the name and role and then redirects to the original requested url' do
|
|
|
|
new_user = build_stubbed(:user)
|
|
|
|
visit new_user_registration_path
|
|
|
|
fill_in 'new_user_username', with: new_user.username
|
|
|
|
fill_in 'new_user_email', with: new_user.email
|
|
|
|
fill_in 'new_user_password', with: new_user.password
|
|
|
|
click_button 'Register'
|
|
|
|
visit new_project_path
|
|
|
|
|
|
|
|
expect(page).to have_current_path(users_sign_up_welcome_path)
|
|
|
|
|
|
|
|
fill_in 'user_name', with: 'New name'
|
|
|
|
select 'Software Developer', from: 'user_role'
|
|
|
|
click_button 'Get started!'
|
|
|
|
new_user = User.find_by_username(new_user.username)
|
|
|
|
|
|
|
|
expect(new_user.name).to eq 'New name'
|
|
|
|
expect(new_user.software_developer_role?).to be_truthy
|
|
|
|
expect(page).to have_current_path(new_project_path)
|
2018-10-15 14:42:47 +05:30
|
|
|
end
|
|
|
|
end
|
2018-03-27 19:54:05 +05:30
|
|
|
end
|