/blocks/myprofile/tests/behat/block_myprofile.feature

http://github.com/moodle/moodle · Gherkin Specification · 309 lines · 293 code · 16 blank · 0 comment · 1 complexity · ffd7b05bacf5b8e0cfec37f1b6740d08 MD5 · raw file

  1. @block @block_myprofile
  2. Feature: The logged in user block allows users to view their profile information
  3. In order to enable the logged in user block
  4. As a user
  5. I can add the logged in user block and configure it to show my information
  6. Scenario: Configure the logged in user block to show / hide the users country
  7. Given the following "users" exist:
  8. | username | firstname | lastname | email | country |
  9. | teacher1 | Teacher | One | teacher1@example.com | AU |
  10. And I log in as "teacher1"
  11. And I press "Customise this page"
  12. When I add the "Logged in user" block
  13. And I configure the "Logged in user" block
  14. And I set the following fields to these values:
  15. | Display country | No |
  16. And I press "Save changes"
  17. Then I should see "Teacher One" in the "Logged in user" "block"
  18. And I should not see "Australia" in the "Logged in user" "block"
  19. And I configure the "Logged in user" block
  20. And I set the following fields to these values:
  21. | Display country | Yes |
  22. And I press "Save changes"
  23. And I should see "Australia" in the "Logged in user" "block"
  24. Scenario: Configure the logged in user block to show / hide the users city
  25. Given the following "users" exist:
  26. | username | firstname | lastname | email | city |
  27. | teacher1 | Teacher | One | teacher1@example.com | Perth |
  28. And I log in as "teacher1"
  29. And I press "Customise this page"
  30. When I add the "Logged in user" block
  31. And I configure the "Logged in user" block
  32. And I set the following fields to these values:
  33. | Display city | No |
  34. And I press "Save changes"
  35. Then I should see "Teacher One" in the "Logged in user" "block"
  36. And I should not see "Perth" in the "Logged in user" "block"
  37. And I configure the "Logged in user" block
  38. And I set the following fields to these values:
  39. | Display city | Yes |
  40. And I press "Save changes"
  41. And I should see "Perth" in the "Logged in user" "block"
  42. Scenario: Configure the logged in user block to show / hide the users email
  43. Given the following "users" exist:
  44. | username | firstname | lastname | email |
  45. | teacher1 | Teacher | One | teacher1@example.com |
  46. And I log in as "teacher1"
  47. And I press "Customise this page"
  48. When I add the "Logged in user" block
  49. And I configure the "Logged in user" block
  50. And I set the following fields to these values:
  51. | Display email | No |
  52. And I press "Save changes"
  53. Then I should see "Teacher One" in the "Logged in user" "block"
  54. And I should not see "teacher1@example.com" in the "Logged in user" "block"
  55. And I configure the "Logged in user" block
  56. And I set the following fields to these values:
  57. | Display email | Yes |
  58. And I press "Save changes"
  59. And I should see "teacher1@example.com" in the "Logged in user" "block"
  60. Scenario: Configure the logged in user block to show / hide the users ICQ
  61. Given the following "users" exist:
  62. | username | firstname | lastname | email | icq |
  63. | teacher1 | Teacher | One | teacher1@example.com | myicq |
  64. And I log in as "teacher1"
  65. And I press "Customise this page"
  66. When I add the "Logged in user" block
  67. And I configure the "Logged in user" block
  68. And I set the following fields to these values:
  69. | Display ICQ | No |
  70. And I press "Save changes"
  71. Then I should see "Teacher One" in the "Logged in user" "block"
  72. And I should not see "myicq" in the "Logged in user" "block"
  73. And I configure the "Logged in user" block
  74. And I set the following fields to these values:
  75. | Display ICQ | Yes |
  76. And I press "Save changes"
  77. And I should see "myicq" in the "Logged in user" "block"
  78. Scenario: Configure the logged in user block to show / hide the users Skype
  79. Given the following "users" exist:
  80. | username | firstname | lastname | email | skype |
  81. | teacher1 | Teacher | One | teacher1@example.com | myskype |
  82. And I log in as "teacher1"
  83. And I press "Customise this page"
  84. When I add the "Logged in user" block
  85. And I configure the "Logged in user" block
  86. And I set the following fields to these values:
  87. | Display Skype | No |
  88. And I press "Save changes"
  89. Then I should see "Teacher One" in the "Logged in user" "block"
  90. And I should not see "myskype" in the "Logged in user" "block"
  91. And I configure the "Logged in user" block
  92. And I set the following fields to these values:
  93. | Display Skype | Yes |
  94. And I press "Save changes"
  95. And I should see "myskype" in the "Logged in user" "block"
  96. Scenario: Configure the logged in user block to show / hide the users Yahoo
  97. Given the following "users" exist:
  98. | username | firstname | lastname | email | yahoo |
  99. | teacher1 | Teacher | One | teacher1@example.com | myyahoo |
  100. And I log in as "teacher1"
  101. And I press "Customise this page"
  102. When I add the "Logged in user" block
  103. And I configure the "Logged in user" block
  104. And I set the following fields to these values:
  105. | Display Yahoo | No |
  106. And I press "Save changes"
  107. Then I should see "Teacher One" in the "Logged in user" "block"
  108. And I should not see "myyahoo" in the "Logged in user" "block"
  109. And I configure the "Logged in user" block
  110. And I set the following fields to these values:
  111. | Display Yahoo | Yes |
  112. And I press "Save changes"
  113. And I should see "myyahoo" in the "Logged in user" "block"
  114. Scenario: Configure the logged in user block to show / hide the users AIM
  115. Given the following "users" exist:
  116. | username | firstname | lastname | email | aim |
  117. | teacher1 | Teacher | One | teacher1@example.com | myaim |
  118. And I log in as "teacher1"
  119. And I press "Customise this page"
  120. When I add the "Logged in user" block
  121. And I configure the "Logged in user" block
  122. And I set the following fields to these values:
  123. | Display AIM | No |
  124. And I press "Save changes"
  125. Then I should see "Teacher One" in the "Logged in user" "block"
  126. And I should not see "myaim" in the "Logged in user" "block"
  127. And I configure the "Logged in user" block
  128. And I set the following fields to these values:
  129. | Display AIM | Yes |
  130. And I press "Save changes"
  131. And I should see "myaim" in the "Logged in user" "block"
  132. Scenario: Configure the logged in user block to show / hide the users MSN
  133. Given the following "users" exist:
  134. | username | firstname | lastname | email | msn |
  135. | teacher1 | Teacher | One | teacher1@example.com | mymsn |
  136. And I log in as "teacher1"
  137. And I press "Customise this page"
  138. When I add the "Logged in user" block
  139. And I configure the "Logged in user" block
  140. And I set the following fields to these values:
  141. | Display MSN | No |
  142. And I press "Save changes"
  143. Then I should see "Teacher One" in the "Logged in user" "block"
  144. And I should not see "mymsn" in the "Logged in user" "block"
  145. And I configure the "Logged in user" block
  146. And I set the following fields to these values:
  147. | Display MSN | Yes |
  148. And I press "Save changes"
  149. And I should see "mymsn" in the "Logged in user" "block"
  150. Scenario: Configure the logged in user block to show / hide the users phone
  151. Given the following "users" exist:
  152. | username | firstname | lastname | email | phone1 |
  153. | teacher1 | Teacher | One | teacher1@example.com | 555-5555 |
  154. And I log in as "teacher1"
  155. And I press "Customise this page"
  156. When I add the "Logged in user" block
  157. And I configure the "Logged in user" block
  158. And I set the following fields to these values:
  159. | Display phone | No |
  160. And I press "Save changes"
  161. Then I should see "Teacher One" in the "Logged in user" "block"
  162. And I should not see "555-5555" in the "Logged in user" "block"
  163. And I configure the "Logged in user" block
  164. And I set the following fields to these values:
  165. | Display phone | Yes |
  166. And I press "Save changes"
  167. And I should see "555-5555" in the "Logged in user" "block"
  168. Scenario: Configure the logged in user block to show / hide the users mobile phone
  169. Given the following "users" exist:
  170. | username | firstname | lastname | email | phone2 |
  171. | teacher1 | Teacher | One | teacher1@example.com | 555-5555 |
  172. And I log in as "teacher1"
  173. And I press "Customise this page"
  174. When I add the "Logged in user" block
  175. And I configure the "Logged in user" block
  176. And I set the following fields to these values:
  177. | Display mobile phone | No |
  178. And I press "Save changes"
  179. Then I should see "Teacher One" in the "Logged in user" "block"
  180. And I should not see "555-5555" in the "Logged in user" "block"
  181. And I configure the "Logged in user" block
  182. And I set the following fields to these values:
  183. | Display mobile phone | Yes |
  184. And I press "Save changes"
  185. And I should see "555-5555" in the "Logged in user" "block"
  186. Scenario: Configure the logged in user block to show / hide the users Institution
  187. Given the following "users" exist:
  188. | username | firstname | lastname | email | institution |
  189. | teacher1 | Teacher | One | teacher1@example.com | myinstitution |
  190. And I log in as "teacher1"
  191. And I press "Customise this page"
  192. When I add the "Logged in user" block
  193. And I configure the "Logged in user" block
  194. And I set the following fields to these values:
  195. | Display institution | No |
  196. And I press "Save changes"
  197. Then I should see "Teacher One" in the "Logged in user" "block"
  198. And I should not see "myinstitution" in the "Logged in user" "block"
  199. And I configure the "Logged in user" block
  200. And I set the following fields to these values:
  201. | Display institution | Yes |
  202. And I press "Save changes"
  203. And I should see "myinstitution" in the "Logged in user" "block"
  204. Scenario: Configure the logged in user block to show / hide the users address
  205. Given the following "users" exist:
  206. | username | firstname | lastname | email | address |
  207. | teacher1 | Teacher | One | teacher1@example.com | myaddress |
  208. And I log in as "teacher1"
  209. And I press "Customise this page"
  210. When I add the "Logged in user" block
  211. And I configure the "Logged in user" block
  212. And I set the following fields to these values:
  213. | Display address | No |
  214. And I press "Save changes"
  215. Then I should see "Teacher One" in the "Logged in user" "block"
  216. And I should not see "myaddress" in the "Logged in user" "block"
  217. And I configure the "Logged in user" block
  218. And I set the following fields to these values:
  219. | Display address | Yes |
  220. And I press "Save changes"
  221. And I should see "myaddress" in the "Logged in user" "block"
  222. Scenario: Configure the logged in user block to show / hide the users first access
  223. Given the following "users" exist:
  224. | username | firstname | lastname | email |
  225. | teacher1 | Teacher | One | teacher1@example.com |
  226. And I log in as "teacher1"
  227. And I press "Customise this page"
  228. When I add the "Logged in user" block
  229. And I configure the "Logged in user" block
  230. And I set the following fields to these values:
  231. | Display first access | No |
  232. And I press "Save changes"
  233. Then I should see "Teacher One" in the "Logged in user" "block"
  234. And I should not see "First access:" in the "Logged in user" "block"
  235. And I configure the "Logged in user" block
  236. And I set the following fields to these values:
  237. | Display first access | Yes |
  238. And I press "Save changes"
  239. And I should see "First access:" in the "Logged in user" "block"
  240. Scenario: Configure the logged in user block to show / hide the users last access
  241. Given the following "users" exist:
  242. | username | firstname | lastname | email |
  243. | teacher1 | Teacher | One | teacher1@example.com |
  244. And I log in as "teacher1"
  245. And I press "Customise this page"
  246. When I add the "Logged in user" block
  247. And I configure the "Logged in user" block
  248. And I set the following fields to these values:
  249. | Display last access | No |
  250. And I press "Save changes"
  251. Then I should see "Teacher One" in the "Logged in user" "block"
  252. And I should not see "Last access:" in the "Logged in user" "block"
  253. And I configure the "Logged in user" block
  254. And I set the following fields to these values:
  255. | Display last access | Yes |
  256. And I press "Save changes"
  257. And I should see "Last access:" in the "Logged in user" "block"
  258. Scenario: Configure the logged in user block to show / hide the users current login
  259. Given the following "users" exist:
  260. | username | firstname | lastname | email |
  261. | teacher1 | Teacher | One | teacher1@example.com |
  262. And I log in as "teacher1"
  263. And I press "Customise this page"
  264. When I add the "Logged in user" block
  265. And I configure the "Logged in user" block
  266. And I set the following fields to these values:
  267. | Display current login | No |
  268. And I press "Save changes"
  269. Then I should see "Teacher One" in the "Logged in user" "block"
  270. And I should not see "Log in:" in the "Logged in user" "block"
  271. And I configure the "Logged in user" block
  272. And I set the following fields to these values:
  273. | Display current login | Yes |
  274. And I press "Save changes"
  275. And I should see "Log in:" in the "Logged in user" "block"
  276. Scenario: Configure the logged in user block to show / hide the users last ip
  277. Given the following "users" exist:
  278. | username | firstname | lastname | email |
  279. | teacher1 | Teacher | One | teacher1@example.com |
  280. And I log in as "teacher1"
  281. And I press "Customise this page"
  282. When I add the "Logged in user" block
  283. And I configure the "Logged in user" block
  284. And I set the following fields to these values:
  285. | Display last IP | No |
  286. And I press "Save changes"
  287. Then I should see "Teacher One" in the "Logged in user" "block"
  288. And I should not see "IP:" in the "Logged in user" "block"
  289. And I configure the "Logged in user" block
  290. And I set the following fields to these values:
  291. | Display last IP | Yes |
  292. And I press "Save changes"
  293. And I should see "IP:" in the "Logged in user" "block"