aboutsummaryrefslogtreecommitdiff
path: root/spec/upload_spec.lua (follow)
Commit message (Collapse)AuthorAgeFilesLines
* tests: some testing environment cleanupsHisham Muhammad2024-10-211-2/+6
|
* tests: reorganize and speed up unit testsHisham Muhammad2024-02-271-21/+24
|
* vendor in the dkjson dependencyHisham Muhammad2024-02-191-1/+0
| | | | | | Fixes #1243. Fixes #1168. Fixes #559.
* tests: avoid repeated hardcoded package version numbers all overHisham Muhammad2022-04-121-2/+2
|
* upload: support uploading pre-packaged .src.rock files (#1321)Hisham Muhammad2021-08-131-0/+8
| | | | | upload: support uploading pre-packaged .src.rock files Co-authored-by: daurnimator <quae@daurnimator.com>
* editorconfig: trim trailing whitespaceHisham Muhammad2021-03-161-4/+4
|
* tests: shorter descriptionsHisham Muhammad2020-02-141-8/+8
|
* Tests: cleanup signature before signingHisham Muhammad2019-04-261-0/+2
|
* upload: add --sign optionHisham Muhammad2019-04-011-1/+5
|
* Tests: support running with the default detected OpenSSL locationsHisham Muhammad2018-07-181-4/+2
|
* Tests: separate OPENSSL_DIRS into OPENSSL_INCDIR and OPENSSL_LIBDIRGeorge Roman2018-07-051-2/+5
|
* Tests: replace #blackbox with #integration and #whitebox with #unitGeorge Roman2018-06-041-2/+1
|
* Tests: cache build of mock server dependencies to speed up testsHisham Muhammad2018-05-281-3/+1
|
* Reorganize test suite filesHisham Muhammad2018-01-081-3/+3
|
* Tests: move mock-server utils into test_environment.luaHisham Muhammad2017-10-081-4/+3
| | | | | This avoids trouble with changing package.paths during tests.
* Tests: use local fixture for new_version test.Hisham Muhammad2017-10-081-25/+4
|
* Tests: use local fixture for upload test.Hisham Muhammad2017-10-081-2/+2
| | | | Do not hit the github repository for LuaSocket in upload test.
* Clarify test_env.need_rock description wrt return valuePeter Melnichenko2017-09-111-1/+1
|
* Use dkjson instead of lua-cjson for upload testPeter Melnichenko2017-09-111-4/+1
| | | | lua-cjson fails to build under LuaJIT 2.1.0-beta3.
* Pass correct rockspec to upload tests that should fail for other reasonsPeter Melnichenko2017-09-111-2/+2
| | | | | | | Most tests simply check that some command succeeds or fails. When failure is expected, failure reason is not checked. In this case, upload commands was failing because passed rockspec did not exist and not for reason tests planned.
* Change APPVEYOR_OPENSSL to OPENSSL_DIRS for better test readabilityroboo2016-08-221-10/+2
|
* Windows and appveyor support for testsroboo2016-08-211-3/+11
|
* Test improvementsroboo2016-07-191-3/+3
|
* Fix of upload tests for lua5.3roboo2016-07-181-1/+2
|
* Fix of upload tests for lua5.3roboo2016-07-181-2/+2
|
* Fix of mock server setuproboo2016-07-171-13/+2
|
* New upload tests with mock-serverroboo2016-07-171-1/+46
|
* Make env vars, paths and run commands available on test env loadPeter Melnichenko2016-07-081-1/+1
|
* Tests: disable insulation and use describe() instead of expose()Peter Melnichenko2016-07-081-1/+1
|
* Remove all the unused imports in test suitePeter Melnichenko2016-07-081-2/+0
|
* New test-suite for LuaRocks (#581)robooo2016-07-071-0/+41
First version of new test-suite, using Busted framework based on Google Summer of Code project: https://summerofcode.withgoogle.com/projects/#5695811874717696 * Rewritten from Bash to Lua * Tests now check if they did what they were supposed to, beyond only checking success or failure of the `luarocks` command * Support for black-box (launching `luarocks` as an external command) and white-box (testing functions in modules directly) testing