[12915] | 1 | .. _testing: |
---|
| 2 | |
---|
[12964] | 3 | Testing |
---|
| 4 | ******* |
---|
[12915] | 5 | |
---|
[12925] | 6 | Introduction |
---|
| 7 | ============ |
---|
| 8 | |
---|
| 9 | Kofa's Python code is being tested automatically. The developers' |
---|
[12924] | 10 | goal is to reach 100% code coverage by Kofa's test runners, which |
---|
| 11 | means that each single line of code is passed at least one time when |
---|
| 12 | running the tests. |
---|
| 13 | |
---|
| 14 | Why testing? Testing makes sure that our code works properly under |
---|
| 15 | given sets of conditions and, only comprehensive testing ensures |
---|
| 16 | that changing or customizing the code does not break existing |
---|
[12964] | 17 | functionality. |
---|
[12924] | 18 | |
---|
[12928] | 19 | Why *automated* testing? Simply because no developer likes to click |
---|
[12964] | 20 | around the user interface to check tons of functionality. In Kofa |
---|
| 21 | more than 1300 tests, with dozens of actions per test, are being |
---|
| 22 | executed each time when the testrunner is started. This job can't be |
---|
| 23 | done manually. |
---|
[12928] | 24 | |
---|
[12930] | 25 | What we test: "Unit" and "Functional" Tests |
---|
[12928] | 26 | ------------------------------------------- |
---|
| 27 | |
---|
[12924] | 28 | There are two different ways to test the code of a web application |
---|
| 29 | automatically: *unit tests* and *functional tests*. The goal of unit |
---|
| 30 | testing is to isolate each part of the program and show that the |
---|
| 31 | individual parts are correct. Functional tests of a web application |
---|
| 32 | are more wholistic, they require a running web application in the |
---|
| 33 | background with even a working (temporary) database. Functional |
---|
| 34 | tests are typically linked to a particular use case, they are |
---|
| 35 | interacting with the portal as a user would. That implies that |
---|
| 36 | functional testing has to make use of a test browser. A test browser |
---|
[12926] | 37 | does the same job as normal web browser does, except for visualizing |
---|
[12928] | 38 | the rendered HTML code. |
---|
[12924] | 39 | |
---|
[12928] | 40 | |
---|
| 41 | How we test: "Python" and "Doctest" Tests |
---|
| 42 | ----------------------------------------- |
---|
| 43 | |
---|
[12924] | 44 | There are also two different ways to integrate tests, either |
---|
[12930] | 45 | functional or unit, into a Python package: *Doctest tests* (or doctests) |
---|
[12924] | 46 | and *Python tests*. Python test modules are a collection of |
---|
| 47 | isolatable Python test cases. A test case combines a collection of |
---|
[12930] | 48 | test methods which are being executed by the testrunner one |
---|
[12924] | 49 | after the other. Python test modules are automatically identified by |
---|
| 50 | means of their filenames which start with ``test_``. In contrast, |
---|
| 51 | doctests can be wrapped up in simple text files (ending with |
---|
| 52 | ``.txt``), or they can be put into docstrings of the application's |
---|
| 53 | source code itself. Common to all doctests is that they are based on |
---|
| 54 | output from the standard Python interpreter shell (indicated by the |
---|
| 55 | interpreter prompt ``>>>``. The doctest runner parses all ``py`` and |
---|
| 56 | ``txt`` files in our package, executes the interpreter commands |
---|
| 57 | found and compares the output against an expected value. Example:: |
---|
| 58 | |
---|
| 59 | Python's `math` module can compute the square root of 2: |
---|
| 60 | |
---|
| 61 | >>> from math import sqrt |
---|
| 62 | >>> sqrt(2) |
---|
| 63 | 1.4142135623730951 |
---|
| 64 | |
---|
| 65 | Why wrapping tests into documentation? An objective of testdriven |
---|
| 66 | software development is also the documentation of the 'Application |
---|
| 67 | Programming Interface' (API) and, to a certain extent, providing a |
---|
| 68 | guideline to users, how to operate the portal. The first is mainly |
---|
| 69 | done in the docstrings of Python modules which present an expressive |
---|
| 70 | documentation of the main use cases of a module and its components. |
---|
| 71 | The latter is primarily done in separate ``txt`` files. |
---|
| 72 | |
---|
| 73 | When starting the development of Kofa, we relied on writing a |
---|
| 74 | coherent documentation including doctests in restructured text |
---|
[12964] | 75 | format. During the software development process, the focus shifted |
---|
[12924] | 76 | from doctesting to pure Python testing with a lot of functional |
---|
| 77 | tests inside. It turned out that Python tests are easier to handle |
---|
| 78 | and more powerful. Drawback is, that these tests cannot easily be |
---|
| 79 | integrated into the Sphinx documentation project (the documentation |
---|
| 80 | which you are reading right now). However, we will list some of |
---|
| 81 | these tests and try to explain what they are good for. |
---|
| 82 | |
---|
| 83 | |
---|
[12930] | 84 | Doctest Tests |
---|
| 85 | ============= |
---|
[12915] | 86 | |
---|
[12921] | 87 | Browsing |
---|
| 88 | -------- |
---|
| 89 | |
---|
[12915] | 90 | .. toctree:: |
---|
| 91 | :maxdepth: 2 |
---|
| 92 | |
---|
[12952] | 93 | testing/pages |
---|
[12915] | 94 | testing/breadcrumbs |
---|
[12921] | 95 | |
---|
| 96 | Cataloging |
---|
| 97 | ---------- |
---|
| 98 | |
---|
| 99 | .. toctree:: |
---|
| 100 | :maxdepth: 2 |
---|
| 101 | |
---|
[12915] | 102 | testing/catalog |
---|
[12921] | 103 | |
---|
| 104 | Data Center |
---|
| 105 | ----------- |
---|
| 106 | |
---|
| 107 | .. toctree:: |
---|
| 108 | :maxdepth: 2 |
---|
| 109 | |
---|
[12915] | 110 | testing/datacenter |
---|
[12921] | 111 | |
---|
| 112 | Security |
---|
| 113 | -------- |
---|
| 114 | |
---|
| 115 | .. toctree:: |
---|
| 116 | :maxdepth: 2 |
---|
| 117 | |
---|
[12915] | 118 | testing/permissions |
---|
[12921] | 119 | |
---|
| 120 | Officers |
---|
| 121 | -------- |
---|
| 122 | |
---|
| 123 | .. toctree:: |
---|
| 124 | :maxdepth: 2 |
---|
| 125 | |
---|
[12915] | 126 | testing/userscontainer |
---|
[12921] | 127 | |
---|
[12951] | 128 | University |
---|
| 129 | ---------- |
---|
| 130 | |
---|
| 131 | .. toctree:: |
---|
| 132 | :maxdepth: 2 |
---|
| 133 | |
---|
| 134 | testing/app |
---|
| 135 | |
---|
[12921] | 136 | Academic Section |
---|
| 137 | ---------------- |
---|
| 138 | |
---|
| 139 | .. toctree:: |
---|
| 140 | :maxdepth: 2 |
---|
| 141 | |
---|
[12951] | 142 | testing/certcourse |
---|
[12921] | 143 | |
---|
| 144 | Batch Processing |
---|
| 145 | ---------------- |
---|
| 146 | |
---|
| 147 | .. toctree:: |
---|
| 148 | :maxdepth: 2 |
---|
| 149 | |
---|
[12947] | 150 | testing/batchprocessing |
---|
| 151 | testing/batchprocessing_browser |
---|
[12921] | 152 | |
---|
| 153 | Access Codes |
---|
| 154 | ------------ |
---|
| 155 | |
---|
| 156 | .. toctree:: |
---|
| 157 | :maxdepth: 2 |
---|
| 158 | |
---|
[12920] | 159 | testing/accesscode |
---|
| 160 | |
---|
| 161 | |
---|
[12927] | 162 | Python Tests |
---|
| 163 | ============ |
---|
| 164 | |
---|
[12930] | 165 | There are hundreds of Python test cases in Kofa with many test |
---|
| 166 | methods each. Here we present only a few of them. The test methods |
---|
| 167 | are easy to read. In most cases they are functional and certain |
---|
| 168 | methods and properties of a test browser are called. Most important |
---|
| 169 | are `browser.open()` (opens a web page), `browser.getControl()` |
---|
| 170 | (gets a control button), `browser.getLink()` (gets a link) and |
---|
| 171 | `browser.contents` (is the HTML content of the opened page). |
---|
| 172 | |
---|
[13046] | 173 | |
---|
[12930] | 174 | .. _test_suspended_officer: |
---|
| 175 | |
---|
[12932] | 176 | Suspended Officer Account |
---|
| 177 | ------------------------- |
---|
[12930] | 178 | |
---|
| 179 | The first test can be found in |
---|
[13646] | 180 | `waeup.kofa.browser.tests.test_browser.SupplementaryBrowserTests`. |
---|
| 181 | The test makes sure that suspended officers can't login but see a |
---|
[12930] | 182 | proper warning message when trying to login. Furthermore, suspended |
---|
| 183 | officer accounts are clearly marked and a warning message shows up |
---|
[12932] | 184 | if a manager accesses a suspended account, see :ref:`Officers |
---|
[12930] | 185 | <officers>`. |
---|
[12964] | 186 | |
---|
[13047] | 187 | .. literalinclude:: ../../../src/waeup/kofa/browser/tests/test_browser.py |
---|
[13698] | 188 | :pyobject: SupplementaryBrowserTests.test_suspended_officer |
---|
[13046] | 189 | |
---|
[13047] | 190 | |
---|
[13046] | 191 | .. _test_handle_clearance: |
---|
| 192 | |
---|
[13047] | 193 | Handling Clearance by Clearance Officer |
---|
| 194 | --------------------------------------- |
---|
[13046] | 195 | |
---|
| 196 | This test can be found in |
---|
[13047] | 197 | `waeup.kofa.students.tests.test_browser.OfficerUITests`. The corresponding use |
---|
| 198 | case is partly described :ref:`elsewhere <rejecting_clearance>`. |
---|
[13046] | 199 | |
---|
| 200 | .. literalinclude:: ../../../src/waeup/kofa/students/tests/test_browser.py |
---|
[13698] | 201 | :pyobject: OfficerUITests.test_handle_clearance_by_co |
---|
[13046] | 202 | |
---|
| 203 | |
---|
| 204 | .. _test_handle_courses: |
---|
| 205 | |
---|
[13047] | 206 | Handling Course List Validation by Course Adviser |
---|
| 207 | ------------------------------------------------- |
---|
[13046] | 208 | |
---|
| 209 | This test can be found in |
---|
[13047] | 210 | `waeup.kofa.students.tests.test_browser.OfficerUITests`. The corresponding use |
---|
| 211 | case is described :ref:`elsewhere <course_registration>`. |
---|
[13046] | 212 | |
---|
| 213 | .. literalinclude:: ../../../src/waeup/kofa/students/tests/test_browser.py |
---|
[13698] | 214 | :pyobject: OfficerUITests.test_handle_courses_by_ca |
---|
[13046] | 215 | |
---|
| 216 | |
---|
| 217 | .. _test_batch_editing_scores: |
---|
| 218 | |
---|
| 219 | Batch Editing Scores by Lecturers |
---|
| 220 | --------------------------------- |
---|
| 221 | |
---|
[13948] | 222 | These test can be found in |
---|
| 223 | `waeup.kofa.students.tests.test_browser.LecturerUITests`. The corresponding use |
---|
| 224 | cases are described :ref:`elsewhere <batch_editing_scores>`. |
---|
[13046] | 225 | |
---|
| 226 | .. literalinclude:: ../../../src/waeup/kofa/students/tests/test_browser.py |
---|
[13948] | 227 | :pyobject: LecturerUITests |
---|
[13047] | 228 | |
---|
[13176] | 229 | .. _test_manage_hostels: |
---|
[13047] | 230 | |
---|
[13176] | 231 | Manage Hostel |
---|
| 232 | ------------- |
---|
| 233 | |
---|
| 234 | This test can be found in |
---|
| 235 | `waeup.kofa.hostels.tests.HostelsUITests`. The corresponding use |
---|
| 236 | case is described :ref:`elsewhere <hostels_pages>`. |
---|
| 237 | |
---|
| 238 | .. literalinclude:: ../../../src/waeup/kofa/hostels/tests.py |
---|
[13698] | 239 | :pyobject: HostelsUITests.test_add_search_edit_delete_manage_hostels |
---|
[13176] | 240 | |
---|
[13047] | 241 | .. _test_handle_accommodation: |
---|
| 242 | |
---|
| 243 | Bed Space Booking |
---|
| 244 | ----------------- |
---|
| 245 | |
---|
| 246 | This test can be found in |
---|
[13701] | 247 | `waeup.kofa.students.tests.test_browser.StudentUITests`. The corresponding use |
---|
[13047] | 248 | case is described :ref:`elsewhere <bed_tickets>`. |
---|
| 249 | |
---|
| 250 | .. literalinclude:: ../../../src/waeup/kofa/students/tests/test_browser.py |
---|
[13698] | 251 | :pyobject: StudentUITests.test_student_accommodation |
---|