Typicalc/README.md

129 lines
4.6 KiB
Markdown
Raw Permalink Normal View History

2021-01-26 15:05:33 +00:00
# Typicalc
2021-01-25 13:10:48 +00:00
2021-03-08 09:53:59 +00:00
The project is a standard Maven project, so you can import it to your IDE of choice.
[Read more how to set up a development environment](https://vaadin.com/docs/v18/flow/installing/installing-overview.html) for Vaadin projects (Windows, Linux, macOS).
2021-01-26 15:05:33 +00:00
2021-01-26 16:05:47 +00:00
[To Vaadin documentation](https://vaadin.com/docs-beta/latest/flow/overview/)
2021-03-08 09:53:59 +00:00
## Running and debugging the application
2021-01-26 15:05:33 +00:00
### Running the application from the command line.
To run from the command line, use `mvn` and open http://localhost:8080 in your browser.
### Running and debugging the application in Intellij IDEA
- Locate the Application.java class in the Project view. It is in the src folder, under the main package's root.
- Right click on the Application class
- Select "Debug 'Application.main()'" from the list
2021-03-08 09:53:59 +00:00
After the application has started, you can view it at http://localhost:8080/ in your browser.
2021-01-26 15:05:33 +00:00
You can now also attach break points in code for debugging purposes, by clicking next to a line number in any source file.
### Running and debugging the application in Eclipse
- Locate the Application.java class in the Package explorer. It is in `src/main/java`, under the main package.
- Right click on the file and select `Debug As` --> `Java Application`.
Do not worry if the debugger breaks at a `SilentExitException`. This is a Spring Boot feature and happens on every startup.
After the application has started, you can view your it at http://localhost:8080/ in your browser.
You can now also attach break points in code for debugging purposes, by clicking next to a line number in any source file.
### Running tests
To run the unit tests and checkstyle: `mvn test`.
2021-10-08 09:51:53 +00:00
To run the integration tests: `mvn integration-test` (note that the screenshots are outdated, so the tests will fail..).
## Technical documentation
Documentation on the application is contained in this file and the Javadocs in each source file.
A quick description of the UI layer can be found in `src/main/java/view/OVERVIEW.md`.
2021-03-08 09:53:59 +00:00
## Fuzzing with [JQF](https://github.com/rohanpadhye/JQF)
### [Zest](https://github.com/rohanpadhye/JQF/wiki/Fuzzing-with-Zest)
Run:
```
mvn test-compile jqf:fuzz -Dclass=edu.kit.typicalc.model.parser.LambdaParserFuzzTest -Dmethod=testInference
```
This will use the `LambdaTermGenerator` to create random lambda terms that are then passed to the `ModelImpl`.
### [AFL](https://lcamtuf.coredump.cx/afl/)
First install the necessary JQF tools: https://github.com/rohanpadhye/jqf/wiki/Fuzzing-with-AFL
2021-01-26 15:05:33 +00:00
2021-03-08 09:53:59 +00:00
Remove the `@Ignore` annotation in `LambdaParserFuzzTest` and run:
```
mvn test-compile
jqf-afl-fuzz -c target/test-classes:target/classes -i src/test/resources/terms/ edu.kit.typicalc.model.parser.LambdaParserFuzzTest testLambdaParserAFL
```
2021-01-26 15:05:33 +00:00
2021-03-08 09:53:59 +00:00
Generated inputs are stored in `fuzz-results/queue/`.
More samples can be added to `src/test/resources/terms/` to speed up the process.
2021-01-26 15:05:33 +00:00
2021-03-12 07:35:03 +00:00
## Running tests + calculating test coverage
First run the unit tests:
```
mvn jacoco:prepare-agent test jacoco:report
```
Then run the application with the JaCoCo agent: (adjust the path to the agent jar)
```
mvn package -Pproduction
2021-03-12 07:35:03 +00:00
cp target/typicalc-1.0-SNAPSHOT.jar /tmp
2021-03-12 12:32:30 +00:00
java -javaagent:$HOME/.m2/repository/org/jacoco/org.jacoco.agent/0.8.6/org.jacoco.agent-0.8.6-runtime.jar=port=36320,destfile=jacoco-it.exec,output=tcpserver -jar /tmp/typicalc-1.0-SNAPSHOT.jar
2021-03-12 07:35:03 +00:00
```
To run the integration tests:
```
mvn integration-test
mvn jacoco:dump@pull-test-data -Dapp.host=localhost -Dapp.port=36320 -Dskip.dump=false
```
2021-03-12 12:31:46 +00:00
JaCoCo execution data of manual tests should be exported to `target/jacoco-manual.exec`.
2021-03-12 07:35:03 +00:00
Finally, a code coverage report can be generated:
```
mvn antrun:run@generate-report -Dskip.int.tests.report=false
```
2021-03-12 12:31:46 +00:00
The report can be found at `target/coverage-report/html/jacoco-multi/index.html`.
2021-03-12 09:43:46 +00:00
2021-01-26 15:05:33 +00:00
## Deploying using Docker
2021-03-11 12:27:36 +00:00
To build the Dockerized version of the project, run:
2021-01-26 15:05:33 +00:00
```
2021-03-11 12:27:36 +00:00
docker build . -t typicalc:latest
2021-01-26 15:05:33 +00:00
```
2021-03-11 12:27:36 +00:00
Once the Docker image is correctly built, you can run it:
2021-01-26 15:05:33 +00:00
```
2021-03-11 12:27:36 +00:00
docker run -p 80:8080 typicalc:latest
2021-01-26 15:05:33 +00:00
```
2021-03-08 09:53:59 +00:00
## Deploying using a JAR
2021-03-11 12:27:36 +00:00
First build the application:
2021-03-08 09:53:59 +00:00
```
2021-03-11 12:27:36 +00:00
mvn clean package -Pproduction
2021-03-08 09:53:59 +00:00
```
2021-03-11 12:27:36 +00:00
2021-03-08 09:53:59 +00:00
Then run the server:
```
2021-03-10 15:05:05 +00:00
PORT=80 java -jar target/typicalc-1.0-SNAPSHOT.jar
2021-03-08 09:53:59 +00:00
```
2021-06-21 08:14:28 +00:00
### Deploying using systemd
Copy the `typicalc.service` file into your systemd configuration and enable the service.
2021-07-28 16:36:59 +00:00
## License
2021-10-07 10:39:43 +00:00
Check the third-party libraries ([MathJax](https://www.mathjax.org/), [svg-pan-zoom](https://github.com/bumbu/svg-pan-zoom), [Hammer.JS](https://hammerjs.github.io/)) in `frontend/src/` for their respective license.
2021-07-28 16:36:59 +00:00
Typicalc itself is licensed under the GPL 3.0 or (at your option) any later version.
© Robin Böhne, Moritz Dieing, Thomas Heinen, Arne Keller, Johanna Stuber