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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
import odoo.tests
from odoo.addons.base.tests.common import HttpCaseWithUserDemo
@odoo.tests.common.tagged('post_install', '-at_install')
class TestUiFeedback(HttpCaseWithUserDemo):
def setUp(self):
super(TestUiFeedback, self).setUp()
self.survey_feedback = self.env['survey.survey'].create({
'title': 'User Feedback Form',
'access_token': 'b137640d-14d4-4748-9ef6-344caaaaaae',
'state': 'open',
'access_mode': 'public',
'users_can_go_back': True,
'questions_layout': 'page_per_section',
'description': """<p>This survey allows you to give a feedback about your experience with our eCommerce solution.
Filling it helps us improving your experience.</p></field>""",
'question_and_page_ids': [
(0, 0, {
'title': 'General information',
'sequence': 1,
'question_type': False,
'is_page': True,
'description': """<p>This section is about general information about you. Answering them helps qualifying your answers.</p>""",
}), (0, 0, {
'title': 'Where do you live ?',
'sequence': 2,
'question_type': 'char_box',
'constr_mandatory': False,
}), (0, 0, {
'title': 'When is your date of birth ?',
'sequence': 3,
'question_type': 'date',
'description': False,
}), (0, 0, {
'title': 'How frequently do you buy products online ?',
'sequence': 4,
'question_type': 'simple_choice',
'comments_allowed': True,
'comment_count_as_answer': True,
'constr_mandatory': True,
'suggested_answer_ids': [
(0, 0, {
'value': 'Once a day',
'sequence': 1,
}), (0, 0, {
'value': 'Once a week',
'sequence': 2,
}), (0, 0, {
'value': 'Once a month',
'sequence': 3,
}), (0, 0, {
'value': 'Once a year',
'sequence': 4,
}), (0, 0, {
'value': 'Other (answer in comment)',
'sequence': 5,
})],
}), (0, 0, {
'title': 'How many times did you order products on our website ?',
'sequence': 5,
'question_type': 'numerical_box',
'constr_mandatory': True,
}), (0, 0, {
'title': 'About our ecommerce',
'sequence': 6,
'is_page': True,
'question_type': False,
'description': """<p>This section is about our eCommerce experience itself.</p>""",
}), (0, 0, {
'title': 'Which of the following words would you use to describe our products ?',
'sequence': 7,
'question_type': 'multiple_choice',
'constr_mandatory': True,
'comments_allowed': True,
'comment_count_as_answer': False,
'suggested_answer_ids': [
(0, 0, {
'value': 'High quality',
'sequence': 1,
}), (0, 0, {
'value': 'Useful',
'sequence': 2,
}), (0, 0, {
'value': 'Unique',
'sequence': 3,
}), (0, 0, {
'value': 'Good value for money',
'sequence': 4,
}), (0, 0, {
'value': 'Overpriced',
'sequence': 5,
}), (0, 0, {
'value': 'Impractical',
'sequence': 6,
}), (0, 0, {
'value': 'Ineffective',
'sequence': 7,
}), (0, 0, {
'value': 'Poor quality',
'sequence': 8,
}), (0, 0, {
'value': 'Other',
'sequence': 9,
})],
}), (0, 0, {
'title': 'What do your think about our new eCommerce ?',
'sequence': 8,
'question_type': 'matrix',
'matrix_subtype': 'multiple',
'constr_mandatory': True,
'suggested_answer_ids': [(0, 0, {
'value': 'Totally disagree',
'sequence': 1
}), (0, 0, {
'value': 'Disagree',
'sequence': 2,
}), (0, 0, {
'value': 'Agree',
'sequence': 3,
}), (0, 0, {
'value': 'Totally agree',
'sequence': 4,
})],
'matrix_row_ids': [(0, 0, {
'value': 'The new layout and design is fresh and up-to-date',
'sequence': 1,
}), (0, 0, {
'value': 'It is easy to find the product that I want',
'sequence': 2,
}), (0, 0, {
'value': 'The tool to compare the products is useful to make a choice',
'sequence': 3,
}), (0, 0, {
'value': 'The checkout process is clear and secure',
'sequence': 4,
}), (0, 0, {
'value': 'I have added products to my wishlist',
'sequence': 5,
})],
}), (0, 0, {
'title': 'Do you have any other comments, questions, or concerns ?',
'sequence': 9,
'question_type': 'text_box',
'constr_mandatory': False,
})
],
})
def test_01_admin_survey_tour(self):
access_token = self.survey_feedback.access_token
self.start_tour("/survey/start/%s" % access_token, 'test_survey', login="admin")
def test_02_demo_survey_tour(self):
access_token = self.survey_feedback.access_token
self.start_tour("/survey/start/%s" % access_token, 'test_survey', login="demo")
def test_03_public_survey_tour(self):
access_token = self.survey_feedback.access_token
self.start_tour("/survey/start/%s" % access_token, 'test_survey')
def test_06_survey_prefill(self):
access_token = self.survey_feedback.access_token
self.start_tour("/survey/start/%s" % access_token, 'test_survey_prefill')
|