-
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.
Finished first cut of the User model
- Loading branch information
Ashwin Das
committed
Sep 25, 2011
1 parent
03749dd
commit 0b9d5fd
Showing
16 changed files
with
327 additions
and
103 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
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,25 @@ | ||
# == Schema Information | ||
# | ||
# Table name: users | ||
# | ||
# id :integer not null, primary key | ||
# name :string(255) | ||
# email :string(255) | ||
# created_at :datetime | ||
# updated_at :datetime | ||
# | ||
|
||
class User < ActiveRecord::Base | ||
attr_accessible :name, :email | ||
|
||
email_regex = /\A[\w+\-.]+@[a-z\d\-.]+\.[a-z]+\z/i | ||
|
||
validates :name, :presence => true, | ||
:length => { :maximum => 50 } | ||
|
||
validates :email, :presence => true, | ||
:format => { :with => email_regex }, | ||
:uniqueness => { :case_sensitive => false } | ||
|
||
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
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 @@ | ||
<%= @user.name %>, <%= @user.email %> |
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,16 @@ | ||
#!/usr/bin/env ruby | ||
# | ||
# This file was generated by Bundler. | ||
# | ||
# The application 'annotate' is installed as part of a gem, and | ||
# this file is here to facilitate running it. | ||
# | ||
|
||
require 'pathname' | ||
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile", | ||
Pathname.new(__FILE__).realpath) | ||
|
||
require 'rubygems' | ||
require 'bundler/setup' | ||
|
||
load Gem.bin_path('annotate', 'annotate') |
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,14 @@ | ||
class CreateUsers < ActiveRecord::Migration | ||
def self.up | ||
create_table :users do |t| | ||
t.string :name | ||
t.string :email | ||
|
||
t.timestamps | ||
end | ||
end | ||
|
||
def self.down | ||
drop_table :users | ||
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,9 @@ | ||
class AddEmailUniquenessIndex < ActiveRecord::Migration | ||
def self.up | ||
add_index :users, :email, :unique => true | ||
end | ||
|
||
def self.down | ||
remove_index :users, :email | ||
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
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,70 @@ | ||
# == Schema Information | ||
# | ||
# Table name: users | ||
# | ||
# id :integer not null, primary key | ||
# name :string(255) | ||
# email :string(255) | ||
# created_at :datetime | ||
# updated_at :datetime | ||
# | ||
|
||
require 'spec_helper' | ||
|
||
describe User do | ||
|
||
before(:each) do | ||
@attr = { :name => "Example User", :email => "[email protected]" } | ||
end | ||
|
||
it "should create a new instance given valid attributes" do | ||
User.create!(@attr) | ||
end | ||
|
||
it "should require a name" do | ||
no_name_user = User.new(@attr.merge(:name => "")) | ||
no_name_user.should_not be_valid | ||
end | ||
|
||
it "should require an email address" do | ||
no_email_user = User.new(@attr.merge(:email => "")) | ||
no_email_user.should_not be_valid | ||
end | ||
|
||
it "should reject names that are too long" do | ||
long_name = "a" * 51 | ||
long_name_user = User.new(@attr.merge(:name => long_name)) | ||
long_name_user.should_not be_valid | ||
end | ||
|
||
it "should accept valid email addresses" do | ||
addresses = %w[[email protected] [email protected] [email protected]] | ||
addresses.each do |address| | ||
valid_email_user = User.new(@attr.merge(:email => address)) | ||
valid_email_user.should be_valid | ||
end | ||
end | ||
|
||
it "should reject invalid email addresses" do | ||
addresses = %w[user@foo,com user_at_foo.org example.user@foo.] | ||
addresses.each do |address| | ||
invalid_email_user = User.new(@attr.merge(:email => address)) | ||
invalid_email_user.should_not be_valid | ||
end | ||
end | ||
|
||
it "should reject duplicate email addresses" do | ||
# Put a user with given email address into the database. | ||
User.create!(@attr) | ||
user_with_duplicate_email = User.new(@attr) | ||
user_with_duplicate_email.should_not be_valid | ||
end | ||
|
||
it "should reject email addresses identical up to case" do | ||
upcased_email = @attr[:email].upcase | ||
User.create!(@attr.merge(:email => upcased_email)) | ||
user_with_duplicate_email = User.new(@attr) | ||
user_with_duplicate_email.should_not be_valid | ||
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
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,7 @@ | ||
# Logfile created on 2011-09-24 23:13:40 -0400 by logger.rb/25413 | ||
REQUESTING PAGE: GET / with {} and HTTP headers {} | ||
REQUESTING PAGE: GET /about with {} and HTTP headers {"HTTP_REFERER"=>"/"} | ||
REQUESTING PAGE: GET /help with {} and HTTP headers {"HTTP_REFERER"=>"/about"} | ||
REQUESTING PAGE: GET /contact with {} and HTTP headers {"HTTP_REFERER"=>"/help"} | ||
REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"/contact"} | ||
REQUESTING PAGE: GET /signup with {} and HTTP headers {"HTTP_REFERER"=>"/"} |