summaryrefslogtreecommitdiff
path: root/src/cz/crcs/ectester/reader/test
Commit message (Collapse)AuthorAgeFilesLines
* Fix default test suite F2m tests.J08nY2018-01-201-3/+4
|
* Add PerformanceTest and add it to the default card test suite.J08nY2018-01-202-4/+117
|
* Add quadratic twist tests into their own test suite.J08nY2018-01-192-1/+63
|
* Add standard curve twists.J08nY2018-01-191-1/+1
|
* Remove unused card test suite code.J08nY2018-01-171-99/+0
|
* Export CPLC data and card ATR in test suite outputs.J08nY2018-01-141-0/+4
|
* Simplify default test suite.J08nY2018-01-131-13/+33
|
* Simplify test suites.J08nY2018-01-096-129/+137
|
* Hide the Cleanup command in test suites.J08nY2017-12-286-44/+40
|
* Remove unused Testable.meta().J08nY2017-12-271-3/+0
|
* Cleanup the applet ECKA and Signature objects.J08nY2017-12-275-11/+12
|
* Implement basic standalone testing.J08nY2017-12-061-1/+0
|
* Extract TestWriters into common.J08nY2017-12-061-2/+2
|
* Fix CommandTest getDescription.J08nY2017-12-061-1/+5
|
* Specialize test suites in reader package to classes.J08nY2017-12-057-60/+14
|
* Fix suites with new CommandTest.J08nY2017-12-056-43/+63
|
* Introduce SimpleTest, implement other tests usign it.J08nY2017-12-031-35/+20
|
* Introduce BaseTestable and Testable Metadata.J08nY2017-12-032-1/+48
|
* Split Util class into a package.J08nY2017-11-261-3/+3
|
* Add KeyAgreement/KeyGeneration/Signature tests. Implement KeyAgreementTest.J08nY2017-11-136-35/+35
|
* Add BouncyCastle library. Sketch out ECTesterStandalone.J08nY2017-11-121-2/+2
|
* Separate build files for standalone and reader apps.J08nY2017-11-121-1/+1
|
* Split test package into common.J08nY2017-11-1010-357/+125
|
* Split the ec package into common package, rename reader part of the project.J08nY2017-11-106-19/+19
|
* Output SWs as unsigned ints.J08nY2017-11-061-1/+1
|
* Introduce Result.Value.ERROR.J08nY2017-11-052-16/+30
| | | | | - Value.ERROR is used when response.error() is true. - Value.ERROR is NOK.
* Implement Result.ExpectedValue to add more logic to test evaluation.J08nY2017-11-058-66/+117
| | | | | | | | | | | | | | | | | | | | | - Introduces a new enum Result.ExpectedValue, which is used to signify what Test results are expected. - Changes the Result.Value enum to contain information about what was expected. It gains more values: - UXSUCCESS -> Unexpected success. - XFAILURE -> Expected failure. The values SUCCESS and XFAILURE are the OK, values. - Creates a hierarchy of evaluating Responses, Simple tests and Compoung tests. Simple test evaluates the OK property of the response object (using .successfull() method) and again exposes its OK property which depends on the tests ExpectedValue and the response success. Compound test evaluates the OK property of the Simple tests it contains (using the .ok() method) and again exposes its OK property which depends on the concrete Compound test variant, but involves some ExpectedValues and the success of the individual Simple tests it contains.
* Add compound test to default tests.feature/test-output-htmlJ08nY2017-10-313-23/+63
|
* Add some more compound tests and suite descriptions.J08nY2017-10-265-22/+16
|
* Introduce a Result class, that has a value and a cause.J08nY2017-10-258-91/+151
|
* Split ResponseWriter into separate class, introduce TestRunner.J08nY2017-10-257-52/+49
|
* Simplify test contract.J08nY2017-10-252-22/+15
|
* Split TestSuite classes into separate files.J08nY2017-10-256-234/+318
|
* Add Compund test to test-vectors suite.J08nY2017-10-252-5/+63
|
* Fix output when missing output format option.J08nY2017-10-241-1/+6
|
* Rename some OutputWriter methods, add YAMLOutputWriter.J08nY2017-10-241-10/+9
|
* Implement a basic XMLOutputWriter.J08nY2017-10-161-4/+5
|
* Refactor response and test outputing into separate writers.J08nY2017-10-152-22/+32
| | | | | This is done to provide multiple output formats, one which logs tests to console in simple human readable format and others.
* Abstract out Test and move its simple implementation to Test.Simple.J08nY2017-10-152-88/+159
| | | | | - Also create a Test.Compound nested static class that can combine multiple Tests and their Results, and has a single Result.
* Reorganize reader packages.J08nY2017-10-132-0/+405