-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make a basic User model (including secure passwords)
- Loading branch information
1 parent
496e3b5
commit 553317b
Showing
8 changed files
with
194 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# == Schema Information | ||
# | ||
# Table name: users | ||
# | ||
# id :integer not null, primary key | ||
# name :string(255) | ||
# email :string(255) | ||
# created_at :datetime not null | ||
# updated_at :datetime not null | ||
# | ||
|
||
class User < ActiveRecord::Base | ||
attr_accessible :name, :email, :password, :password_confirmation | ||
has_secure_password | ||
before_save { |user| user.email = email.downcase } | ||
validates :name, presence: true, length: { maximum: 50 } | ||
VALID_EMAIL_REGEX = /\A[\w+\-.]+@[a-z\d\-.]+\.[a-z]+\z/i | ||
validates :email, presence: true, format: { with: VALID_EMAIL_REGEX }, | ||
uniqueness: { case_sensitive: false } | ||
validates :password, presence: true, length: { minimum: 6 } | ||
validates :password_confirmation, presence: true | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
class CreateUsers < ActiveRecord::Migration | ||
def change | ||
create_table :users do |t| | ||
t.string :name | ||
t.string :email | ||
|
||
t.timestamps | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
class AddIndexOnUsersEmail < ActiveRecord::Migration | ||
def change | ||
add_index :users, :email, unique: true | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
class AddPasswordDigestToUsers < ActiveRecord::Migration | ||
def change | ||
add_column :users, :password_digest, :string | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# encoding: UTF-8 | ||
# This file is auto-generated from the current state of the database. Instead | ||
# of editing this file, please use the migrations feature of Active Record to | ||
# incrementally modify your database, and then regenerate this schema definition. | ||
# | ||
# Note that this schema.rb definition is the authoritative source for your | ||
# database schema. If you need to create the application database on another | ||
# system, you should be using db:schema:load, not running all the migrations | ||
# from scratch. The latter is a flawed and unsustainable approach (the more migrations | ||
# you'll amass, the slower it'll run and the greater likelihood for issues). | ||
# | ||
# It's strongly recommended to check this file into your version control system. | ||
|
||
ActiveRecord::Schema.define(:version => 20121114133039) do | ||
|
||
create_table "users", :force => true do |t| | ||
t.string "name" | ||
t.string "email" | ||
t.datetime "created_at", :null => false | ||
t.datetime "updated_at", :null => false | ||
t.string "password_digest" | ||
end | ||
|
||
add_index "users", ["email"], :name => "index_users_on_email", :unique => true | ||
|
||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
# == Schema Information | ||
# | ||
# Table name: users | ||
# | ||
# id :integer not null, primary key | ||
# name :string(255) | ||
# email :string(255) | ||
# created_at :datetime not null | ||
# updated_at :datetime not null | ||
# | ||
|
||
require 'spec_helper' | ||
|
||
describe User do | ||
before { @user = User.new(name: "Example User", email: "[email protected]", | ||
password: "foobar", password_confirmation: "foobar") } | ||
subject { @user } | ||
|
||
it { should respond_to(:name) } | ||
it { should respond_to(:email) } | ||
it { should respond_to(:password_digest) } | ||
it { should respond_to(:password) } | ||
it { should respond_to(:password_confirmation) } | ||
it { should respond_to(:authenticate) } | ||
|
||
it { should be_valid } | ||
|
||
describe "when name is not present" do | ||
before { @user.name = " " } | ||
it { should_not be_valid } | ||
end | ||
|
||
describe "when name is not present" do | ||
before { @user.email = " " } | ||
it { should_not be_valid } | ||
end | ||
|
||
describe "when name is too long" do | ||
before { @user.name = "a" * 51 } | ||
it { should_not be_valid } | ||
end | ||
|
||
describe "when email format is invalid" do | ||
it "should be invalid" do | ||
address = %w[user@foo,com user_at_foo.org [email protected]@bar_baz.com foo@bar+baz.com] | ||
address.each do |invalid_address| | ||
@user.email = invalid_address; | ||
@user.should_not be_valid | ||
end | ||
end | ||
end | ||
|
||
describe "when email format is valid" do | ||
it "should be valid" do | ||
address = %w[[email protected] [email protected] [email protected] [email protected]] | ||
address.each do |valid_address| | ||
@user.email = valid_address | ||
@user.should be_valid | ||
end | ||
end | ||
end | ||
|
||
describe "when email address is already taken" do | ||
before do | ||
user_with_same_email = @user.dup | ||
user_with_same_email.save | ||
end | ||
|
||
it { should_not be_valid } | ||
end | ||
|
||
describe "when email address is taken as upcase, invalid" do | ||
before do | ||
user_with_same_email = @user.dup | ||
user_with_same_email.email = @user.email.upcase | ||
user_with_same_email.save | ||
end | ||
|
||
it { should_not be_valid } | ||
end | ||
|
||
describe "when password is not present" do | ||
before { @user.password = @user.password_confirmation = " " } | ||
it { should_not be_valid } | ||
end | ||
|
||
describe "when password doesn't match confirmation" do | ||
before { @user.password_confirmation = "mismatch" } | ||
it { should_not be_valid } | ||
end | ||
|
||
describe "when password confirmation is nil" do | ||
before { @user.password_confirmation = nil } | ||
it { should_not be_valid } | ||
end | ||
|
||
describe "with a password that's too short" do | ||
before { @user.password = @user.password_confirmation = "a" * 5 } | ||
it { should be_invalid } | ||
end | ||
|
||
describe "return value of authenticate method" do | ||
before { @user.save } | ||
let(:found_user) { User.find_by_email(@user.email) } | ||
|
||
describe "with valid password" do | ||
it { should == found_user.authenticate(@user.password) } | ||
end | ||
|
||
describe "with invalid password" do | ||
let(:user_for_invalid_password) { found_user.authenticate("invalid") } | ||
it { should_not == user_for_invalid_password } | ||
specify { user_for_invalid_password.should be_false } | ||
end | ||
end | ||
end |