profile_test.rb
1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
require File.dirname(__FILE__) + '/../test_helper'
class ProfileTest < Test::Unit::TestCase
fixtures :profiles, :virtual_communities, :users, :comatose_pages
def test_identifier_validation
p = Profile.new
p.valid?
assert p.errors.invalid?(:identifier)
p.identifier = 'with space'
p.valid?
assert p.errors.invalid?(:identifier)
p.identifier = 'áéíóú'
p.valid?
assert p.errors.invalid?(:identifier)
p.identifier = 'rightformat2007'
p.valid?
assert ! p.errors.invalid?(:identifier)
p.identifier = 'rightformat'
p.valid?
assert ! p.errors.invalid?(:identifier)
p.identifier = 'right_format'
p.valid?
assert ! p.errors.invalid?(:identifier)
end
def test_has_domains
p = Profile.new
assert_kind_of Array, p.domains
end
def test_belongs_to_virtual_community_and_has_default
p = Profile.new
assert_kind_of VirtualCommunity, p.virtual_community
end
def test_cannot_rename
p1 = profiles(:johndoe)
assert_raise ArgumentError do
p1.identifier = 'bli'
end
end
# when a profile called a page named after it must also be created.
def test_should_create_homepage_when_creating_profile
Profile.create!(:identifier => 'newprofile', :name => 'New Profile')
page = Comatose::Page.find_by_path('newprofile')
assert_not_nil page
assert_equal 'New Profile', page.title
end
def test_name_should_be_mandatory
p = Profile.new
p.valid?
assert p.errors.invalid?(:name)
p.name = 'a very unprobable name'
p.valid?
assert !p.errors.invalid?(:name)
end
end