Age | Commit message (Expand) | Author |
2020-10-31 | remove redundant classes | Alexanderlacuna |
2020-10-31 | use descriptive variable names | Alexanderlacuna |
2020-10-31 | Use more descriptive variable and class names | Alexanderlacuna |
2020-10-30 | add test for get_export_metadata | Alexanderlacuna |
2020-10-29 | add test for show_trait | Alexanderlacuna |
2020-10-29 | Merge branch 'testing' of https://github.com/genenetwork/genenetwork2 into te... | Alexanderlacuna |
2020-10-29 | format file | Alexanderlacuna |
2020-10-29 | add test for show_trait/export_trait_data | Alexanderlacuna |
2020-10-28 | Add new test for hmac_creation with latin-1 secret...* wqflask/tests/utility/test_hmac.py (test_hmac_creation_with_cookie):
New test. For this test, use a secret that behaves differently when
encoded to either utf-8 or latin-1.
| BonfaceKilz |
2020-10-28 | Add tests for cookie verification | BonfaceKilz |
2020-10-27 | Merge pull request #465 from Alexanderlacuna/test-branch...add test for trait_data | BonfaceKilz |
2020-10-27 | switch from single quote to double quote | Alexanderlacuna |
2020-10-27 | address failures | Alexanderlacuna |
2020-10-27 | added changes to file | Alexanderlacuna |
2020-10-27 | modified to use pep8 standards | Alexanderlacuna |
2020-10-26 | modified test file | Alexanderlacuna |
2020-10-20 | Add tests for encoding password...* wqflask/tests/wqflask/test_user_login.py: New tests.
| BonfaceKilz |
2020-10-20 | Add pbkdf2 tests...* wqflask/tests/wqflask/test_pbkdf2.py: New tests.
| BonfaceKilz |
2020-10-09 | Add test for process_traits from collections.py...* wqflask/tests/wqflask/test_collect.py: Add it.
| BonfaceKilz |
2020-09-30 | Fix import in tests | BonfaceKilz |
2020-09-29 | Add test for process_traits from collections.py...* wqflask/tests/wqflask/test_collect.py: Add it.
| BonfaceKilz |
2020-09-28 | Fix failing test...* wqflask/tests/base/test_trait.py: Add app_context to test class,
otherwise an error related to working outside the app_context is
generated. Adding the app_context is required when mocking "Flask.g".
| BonfaceKilz |
2020-09-28 | Merge branch 'build/python3-migration' of github.com:BonfaceKilz/genenetwork2... | BonfaceKilz |
2020-09-28 | Update trait tests...* wqflask/tests/base/test_trait.py
(test_retrieve_trait_info_with_non_empty_lrs): Check
trait.LRS_score_repr is set correctly if trait.lrs is None.
(test_retrieve_trait_info_with_empty_lrs_field): Check
trait.LRS_score_repr and test_trait.LRS_location_repr is set correctly
if trait.lrs is None.
(test_retrieve_trait_info_with_empty_chr_field): Check
test_trait.LRS_score_repr and test_trait.LRS_location_repr is set
correctly if trait.locus is None.
| BonfaceKilz |
2020-09-26 | Fix failing tests by replacing mock with unittest.mock...* wqflask/tests/base/test_data_set.py (imports): Run:
`find . -type f -name "*py" -print0 | xargs -0 sed -i \
"s|import mock|from unittest import mock|g"`
* wqflask/tests/base/test_trait.py(imports): Ditto.
* wqflask/tests/utility/test_authentication_tools.py(imports): Ditto.
* wqflask/tests/utility/test_hmac.py(imports). Ditto.
* wqflask/tests/wqflask/api/test_gen_menu.py: Ditto
| BonfaceKilz |
2020-09-26 | Fix failing tests...* wqflask/tests/base/test_trait.py: Remove decode function call which
is no longer supported in python3.
| BonfaceKilz |
2020-09-26 | Merge branch 'testing' into build/python3-migration | BonfaceKilz |
2020-09-23 | Fix failing tests...* wqflask/tests/base/test_trait.py: In python2 it's necessary to
decode the utf-8 string.
| BonfaceKilz |
2020-09-17 | Merge branch 'testing' into build/python3-migration | BonfaceKilz |
2020-09-17 | Mock "SECRET_HMAC_CODE"...* wqflask/tests/utility/test_hmac.py: Mock app.config's
"SECRET_HMAC_CODE" value.
| BonfaceKilz |
2020-09-17 | Fix errors in tests...* wqflask/tests/utility/test_authentication_tools.py
test_check_resource_availability_non_default_mask): Mock flask's
global 'g' variable properly.
* wqflask/tests/base/test_trait.py: Ditto.
* wqflask/tests/utility/test_authentication_tools.py: Ditto.
| BonfaceKilz |
2020-09-17 | Merge branch 'testing' into build/python3-migration | BonfaceKilz |
2020-09-17 | Add tests for hmac utility...* wqflask/tests/utility/test_hmac.py: New tests.
| BonfaceKilz |
2020-09-16 | Add new tests for "base/trait.py"...* wqflask/tests/base/test_trait.py: New tests.
| BonfaceKilz |
2020-09-16 | Add tests for "add_new_resource" method...* wqflask/tests/utility/test_authentication_tools.py: Add them.
| BonfaceKilz |
2020-09-16 | Add tests for authentication tools...Catches bugs in:
-
https://github.com/genenetwork/genenetwork2/pull/422/commits/70dbeeb5832711ed5271434e482c18bc7ea095b8
* wqflask/tests/utility/test_authentication_tools.py: New file. Add
tests for "check_resource_availability".
| BonfaceKilz |
2020-09-15 | Fix failing tests...* wqflask/tests/base/test_data_set.py: Update failing tests introduced
by the change in 301bdd2f4.
| BonfaceKilz |
2020-08-27 | Fix failing tests | BonfaceKilz |
2020-08-26 | Fix failing tests that use python2-htmlgen...* wqflask/tests/wqflask/marker_regression/test_display_mapping_results.py: Fix
tests.
| BonfaceKilz |
2020-08-24 | Add tests for the HtmlGenWrapper class...* wqflask/tests/wqflask/marker_regression/test_display_mapping_results.py: Add
new tests
| BonfaceKilz |
2020-08-24 | Rename file...* wqflask/tests/wqflask/marker_regression/test_display_mapping_results.py:
Rename test_display_marking_results.py to test_display_mapping_results.py
| BonfaceKilz |
2020-08-24 | Fix failing test...* wqflask/tests/wqflask/api/test_gen_menu.py: Update assertion. Result data
introduced in 092212df
Signed-off-by: BonfaceKilz <bonfacemunyoki@gmail.com>
| BonfaceKilz |
2020-08-08 | Add a basic test for test_display_marking_results.py...* wqflask/tests/wqflask/marker_regression/__init__.py: Add it
* wqflask/tests/wqflask/marker_regression/test_display_marking_results.py: Check
that PIL colors are being used instead of the deprecated Piddle colors.
| BonfaceKilz |
2020-08-07 | Move wqflask/tests/api to wqflask/tests/wqflask...* wqflask/tests(api): Move all the files here to tests/wqflask. The test dir
should mirror the actual module structure
| BonfaceKilz |
2020-08-03 | Fix some errors generated by running pylint...* wqflask/wqflask/api/gen_menu.py: Apply pylint.
* wqflask/tests/api/test_gen_menu.py: Apply pylint.
| BonfaceKilz |
2020-08-03 | Add extra test for "build_datasets"...* wqflask/tests/api/test_gen_menu.py: Add test.
| BonfaceKilz |
2020-08-03 | Move variable to setUp...* wqflask/tests/api/test_gen_menu.py: Move variable
| BonfaceKilz |
2020-08-03 | Add test for "gen_dropdown_json"...* wqflask/tests/api/test_gen_menu.py: Add new test
| BonfaceKilz |
2020-08-03 | Add tests for "get_datasets"...* wqflask/tests/api/test_gen_menu.py: Add new tests
| BonfaceKilz |
2020-08-03 | Add tests for "get_types"...* wqflask/tests/api/test_gen_menu.py: Add new tests
| BonfaceKilz |