Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sanix-darker/testa
A POC for testing your code, only with comments.
https://github.com/sanix-darker/testa
automated-tests developpers json python test test-automation test-driven-development test-framework test-runner testing testing-framework testing-tools testng tests
Last synced: about 1 month ago
JSON representation
A POC for testing your code, only with comments.
- Host: GitHub
- URL: https://github.com/sanix-darker/testa
- Owner: Sanix-Darker
- License: mit
- Created: 2019-05-09T12:07:56.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-05-21T06:31:22.000Z (6 months ago)
- Last Synced: 2024-09-23T08:09:31.494Z (about 2 months ago)
- Topics: automated-tests, developpers, json, python, test, test-automation, test-driven-development, test-framework, test-runner, testing, testing-framework, testing-tools, testng, tests
- Language: Python
- Homepage:
- Size: 938 KB
- Stars: 9
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Testa
Testa is the best, simple Test tool "CrossPlatform" and "CrossLanguages" (Only Script languages supported for now),
develop by developpers for developpers based on comments in your code.
The power in this tool is that the grammar is the same for all your implementation languages.**Note:** This project is completly experimental, am still working on it, not sure where am going with it lol.
## Features
- Testa can do any Unittest you want from an assertion.
- Testa Can Save Your Tests reports so that you can check it later in a persistant file.
- Testa is light and simple because it is based on comments in your code.
- Testa have a specific and very simple grammar for testing "all methods" presents in a file in one time and generate reports.
- Testa is build from scratch so it doesn't have any dependency or any kind of troubleshooting with potentials externals libs.
- Testa can generate for you a small and readable documentation whatever the language you're using## Testa can test all theese programming languages
List of languages, where you can perform testa test:
- [Done] Python
- [Done] Javascript
- [Done] PHP
- [Done] Ruby## Documentation
Some few things to know before using testa.## How to config it
### Config files
You need to config a `testa.json`.
- An example of testa config file for `Javascript`:
```json
{
"module": "ta-js",
"path": ["./square.js", "./my_javascript_app/"],
"extensions": [".js"],
"launcher": "node"
}
```
ps : in `path` parameter, you can define either a file or a directory- An example of testa config file for `PHP`:
```json
{
"module": "ta-php",
"path": ["./square.php"],
"extensions": [".php"],
"launcher": "php"
}
```
- An example of testa config file for `python`:
```json
{
"module": "ta-py",
"path": ["./sha256.py", "./square.py"],
"extensions": [".py"],
"launcher": "python"
}
```
- An example of testa config file for `Ruby`:
```json
{
"module": "ta-rb",
"path": ["./my_ruby_app/", "./square.rb"],
"extensions": [".rb"],
"launcher": "ruby"
}
```### Legend
Parameter
Example
Meaning
path
["./javascript/square.js", "./javascript/my_javascript_app/"]
All path where testa will perform tests.
extensions
[".js"]
All file extensions to be tests.
launcher
"node"
The program responsible fo launching the script in command line.
outputMethod
"console.log"
The default print/log for the appropriate language.
commentStartBy
"//"
The default started comment character.
tryCatch
"try{ \n\t **** \n}catch(err){ \n\t console.log(es);}"
A oneline try catch to get errors when the code crash, the **** will be were the code will be place.
function
""
The function name synthax like function or def.
varDeclaration
["var", "let", "const"]
The prefix on instantiation of a variable.
classInstantiationNew
"new"
The keyword synthax instantiation.
AccoladeStart
"{"
This define the start of a function or a class.
AccoladeEnd
"}"
This define the end of a method or a class.
NoneNull
"none"
None for python and null for javascript.
selfOrThis
"this"
self for python and this for javascript for example.
selfOnFunctionParams
false
The 'self' or 'this' parameter present on method.
semicolon
";"
For thoose langage that supporting instructions only with a ";" (semicolon).
## How to install it
To install testa, it's really simple, you just have to run:
```shell
pip install tsta# Then cd to the directory tha tcontain your testa.json file
# and run :
tsta
# That's all, a report will be generated
```## How to use it
In your code, make sure to enclose the instructions you want to test with the testa grammar, for example:
- In Python:```python
# For a Simple assertion:# ::import_start::
# --- Your imports here, if your methods need them ---
# ::import_end::# ::testa_start::
# ::case_start::
# >> testa.isEqual(2, 2)
# << true
# ::case_end::
# ::testa_end::#
# ::doc_start::
# .
# Here a small description of the function that will be generate on the documentation
# .
# ::doc_end::
## With methods :
# ::testa_start::
# ::case_start::
# >> addition(2, 2)
# << 4
# ::case_end::
# ::code_start::
def addition(a, b):
return a+b
# ::code_end::
# ::testa_end::
```- In Javascript:
```javascript// ::import_start::
// --- Your imports here ---
// ::import_end::// For a Simple assertion:
// ::testa_start::
// ::case_start::
// >> testa.isEqual(2, 2)
// << true
// ::case_end::
// ::testa_end::// For more instructions:
// ::testa_start::
// ::case_start::
// >> addition(2, 2)
// << 4
// ::case_end:://
// ::doc_start::
// .
// Here a small description of the function that will be generate on the documentation
// .
// ::doc_end::
//// ::code_start::
// --- Your specific list of instruction / functions source code here!
function addition(a, b){
return a+b
}
// ::code_end::
// ::testa_end::
```- In php :
```php
// ::testa_start::
// ::case_start::
// >> square(9)
// << 3
// ::case_end::
// ::code_start::
function square($a){
return sqrt($a);
}
// ::code_end::
// ::testa_end::
```- In Ruby :
```ruby
# ::testa_start::
# ::case_start::
# >> square(9)
# << 3.0
# ::case_end::
# ::code_start::
def square(a)
return a/2
# ::code_end::
# ::testa_end::
```And that's where the magic of Testa is, for any language, you have only to write a simple JSON file and specify paths where you will do tests.
## Author
- Sanix darker