2010-04-13 13:24:12 +00:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Account do
|
|
|
|
|
|
|
|
it 'should have a valid factory' do
|
|
|
|
Factory.build(:account).should be_valid
|
|
|
|
end
|
|
|
|
|
|
|
|
## Validations ##
|
|
|
|
|
|
|
|
%w{name email password}.each do |attr|
|
|
|
|
it "should validate presence of #{attr}" do
|
|
|
|
account = Factory.build(:account, attr.to_sym => nil)
|
|
|
|
account.should_not be_valid
|
|
|
|
account.errors[attr.to_sym].should include("can't be blank")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should have a default locale" do
|
2010-05-10 22:39:52 +00:00
|
|
|
account = Account.new
|
2010-04-13 13:24:12 +00:00
|
|
|
account.locale.should == 'en'
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should validate uniqueness of email" do
|
|
|
|
Factory(:account)
|
|
|
|
(account = Factory.build(:account)).should_not be_valid
|
|
|
|
account.errors[:email].should == ["is already taken"]
|
|
|
|
end
|
|
|
|
|
|
|
|
## Associations ##
|
|
|
|
|
|
|
|
it 'should own many sites' do
|
|
|
|
account = Factory(:account)
|
2010-05-10 22:39:52 +00:00
|
|
|
site_1 = Factory(:site, :memberships => [Membership.new(:account => account)])
|
|
|
|
site_2 = Factory(:site, :subdomain => 'foo', :memberships => [Membership.new(:account => account)])
|
2010-04-13 13:24:12 +00:00
|
|
|
account.sites.should == [site_1, site_2]
|
|
|
|
end
|
|
|
|
|
2010-05-10 22:39:52 +00:00
|
|
|
describe 'deleting' do
|
|
|
|
|
|
|
|
before(:each) do
|
|
|
|
@account = Factory.build(:account)
|
|
|
|
@site_1 = Factory.build(:site, :subdomain => 'foo', :memberships => [Factory.build(:membership, :account => @account)])
|
|
|
|
@site_2 = Factory.build(:site, :subdomain => 'bar', :memberships => [Factory.build(:membership, :account => @account)])
|
|
|
|
@account.stubs(:sites).returns([@site_1, @site_2])
|
|
|
|
Site.any_instance.stubs(:save).returns(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should also delete memberships' do
|
|
|
|
Site.any_instance.stubs(:admin_memberships).returns(['junk'])
|
|
|
|
@account.destroy
|
|
|
|
@site_1.memberships.should be_empty
|
|
|
|
@site_2.memberships.should be_empty
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should raise an exception if account is the only remaining admin' do
|
|
|
|
@site_1.stubs(:admin_memberships).returns(['junk'])
|
|
|
|
lambda {
|
|
|
|
@account.destroy
|
|
|
|
}.should raise_error(Exception, "One admin account is required at least")
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2010-04-13 13:24:12 +00:00
|
|
|
end
|