safe_strings_test.rb
5.9 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
require_relative "../test_helper"
class SafeStringsTest < ActionDispatch::IntegrationTest
should 'not escape link to admins on profile page' do
person = fast_create Person
community = fast_create Community
community.add_admin(person)
get "/profile/#{community.identifier}"
assert_tag :tag => 'td', :content => 'Admins', :sibling => {
:tag => 'td', :child => { :tag => 'a', :content => person.name }
}
end
should 'not escape people names on members block' do
person = fast_create Person
community = fast_create Community
community.add_member(person)
community.boxes << Box.new
community.boxes.first.blocks << MembersBlock.new
get "/profile/#{community.identifier}"
assert_tag :tag => 'div', :attributes => { :id => "block-#{community.blocks.first.id}" }, :descendant => {
:tag => 'li', :attributes => { :class => 'vcard' }, :content => person.name
}
end
should 'not escape RawHTMLBlock content' do
community = fast_create Community
community.boxes << Box.new
community.boxes.first.blocks << RawHTMLBlock.new(:html => '<b>bold</b>')
get "/profile/#{community.identifier}"
assert_tag :tag => 'div', :attributes => { :id => "block-#{community.blocks.first.id}" }, :descendant => {
:tag => 'b', :content => 'bold'
}
end
should 'not escape profile header or footer' do
community = fast_create Community
community.update_header_and_footer('<b>header</b>', '<b>footer</b>')
get "/profile/#{community.identifier}"
assert_tag :tag => 'div', :attributes => { :id => 'profile-header' }, :child => { :tag => 'b', :content => 'header' }
assert_tag :tag => 'div', :attributes => { :id => 'profile-footer' }, :child => { :tag => 'b', :content => 'footer' }
end
should 'not escape → symbol from categories' do
create_user('marley', :password => 'test', :password_confirmation => 'test').activate
category = fast_create Category
subcategory = fast_create(Category, :parent_id => category.id)
Person['marley'].categories << subcategory
login 'marley', 'test'
get "/myprofile/marley/profile_editor/edit"
assert_tag :tag => 'a', :attributes => { :id => "remove-selected-category-#{subcategory.id}-button" },
:content => "#{category.name} → #{subcategory.name}"
end
should 'not escape MainBlock on profile design' do
create_user('jimi', :password => 'test', :password_confirmation => 'test').activate
jimi = Person['jimi']
jimi.boxes << Box.new
jimi.boxes.first.blocks << MainBlock.new
login 'jimi', 'test'
get "/myprofile/jimi/profile_design"
assert_tag :tag => 'div', :attributes => { :class => 'main-content' }, :content => '<Main content>'
end
should 'not escape confirmation message on deleting folders' do
create_user('jimi', :password => 'test', :password_confirmation => 'test').activate
fast_create(Folder, :name => 'Hey Joe', :profile_id => Person['jimi'].id, :updated_at => DateTime.now)
login 'jimi', 'test'
get "/myprofile/jimi/cms"
assert_tag :tag => 'a', :attributes => {
'data-confirm' => /Are you sure that you want to remove the folder "Hey Joe"\?/
}
end
should 'not escape people names on manage friends' do
create_user('jimi', :password => 'test', :password_confirmation => 'test').activate
friend = fast_create Person
Person['jimi'].add_friend(friend)
login 'jimi', 'test'
get '/myprofile/jimi/friends'
assert_tag :tag => 'div', :attributes => { :id => 'manage_friends' }, :descendant => {
:tag => 'a', :attributes => { :class => 'profile-link' }, :content => friend.name
}
end
should 'not escape task information on manage profile' do
create_user('marley', :password => 'test', :password_confirmation => 'test').activate
person = Person['marley']
task = create(Task, :requestor => person, :target => person)
login 'marley', 'test'
get "/myprofile/marley"
assert_select ".pending-tasks ul li a"
end
should 'not escape author link in publishing info of article' do
create_user('jimi', :password => 'test', :password_confirmation => 'test').activate
person = Person['jimi']
article = fast_create(Article, author_id: person.id, profile_id: person.id)
get url_for(article.view_url)
assert_select ".publishing-info .author a"
end
should 'not escape tinymce macros when create article' do
class Plugin1 < Noosfero::Plugin
end
class Plugin1::Macro < Noosfero::Plugin::Macro
def self.configuration
{params: {}}
end
end
Noosfero::Plugin::Manager.any_instance.stubs(:enabled_plugins).returns([SafeStringsTest::Plugin1.new])
create_user('jimi', :password => 'test', :password_confirmation => 'test').activate
person = Person['jimi']
login 'jimi', 'test'
get "/myprofile/jimi/cms/new?type=TinyMceArticle"
assert_no_match /title: "Safestringstest::plugin1::macro"/, response.body
end
should 'not escape short_description of articles in activities' do
user = create_user('marley', :password => 'test', :password_confirmation => 'test')
user.activate
profile = user.person
login 'marley', 'test'
expected_content = 'something'
html_content = "<p>#{expected_content}</p>"
article = TinyMceArticle.create!(:profile => profile, :name => 'An Article about Free Software', :body => html_content)
ActionTracker::Record.destroy_all
activity = create(ActionTracker::Record, :user_id => profile.id, :user_type => 'Profile', :verb => 'create_article', :target_id => article.id, :target_type => 'Article', :params => {'name' => article.name, 'url' => article.url, 'lead' => article.lead, 'first_image' => article.first_image})
get "/profile/marley"
assert_tag 'li', :attributes => {:id => "profile-activity-item-#{activity.id}"}, :descendant => {
:tag => 'div', :content => "\n " + expected_content, :attributes => {:class => 'profile-activity-lead'}
}
end
end