Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/liyishuai/coq-http
HTTP specification in Coq, testable and verifiable
https://github.com/liyishuai/coq-http
Last synced: 17 days ago
JSON representation
HTTP specification in Coq, testable and verifiable
- Host: GitHub
- URL: https://github.com/liyishuai/coq-http
- Owner: liyishuai
- License: mpl-2.0
- Created: 2020-05-20T23:06:54.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-08-31T03:26:38.000Z (about 1 year ago)
- Last Synced: 2024-05-01T16:49:53.400Z (7 months ago)
- Language: Coq
- Homepage:
- Size: 269 KB
- Stars: 13
- Watchers: 4
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# coq-http
[![Docker CI][docker-action-shield]][docker-action-link]
[docker-action-shield]: https://github.com/liyishuai/coq-http/workflows/Docker%20CI/badge.svg?branch=master
[docker-action-link]: https://github.com/liyishuai/coq-http/actions?query=workflow:"Docker%20CI"HTTP specification in Coq, testable and verifiable
## Meta
- Author(s):
- Yishuai Li [](https://orcid.org/0000-0002-5728-5903)
- Li-yao Xia [](https://orcid.org/0000-0003-2673-4400)
- Yao Li [](https://orcid.org/0000-0001-8720-883X)
- Azzam Althagafi
- Benjamin C. Pierce [](https://orcid.org/0000-0001-7839-1636)
- License: [Mozilla Public License 2.0](LICENSE)
- Compatible Coq versions: 8.14 or later
- Additional dependencies:
- [OCamlbuild](https://github.com/ocaml/ocamlbuild)
- [QuickChick](https://github.com/QuickChick/QuickChick/)
- [AsyncTest](https://github.com/liyishuai/coq-async-test)
- Coq namespace: `HTTP`
- Related publication(s):
- [From C to Interaction Trees: Specifying, Verifying, and Testing a Networked Server](https://doi.org/10.1145/3293880.3294106) doi:[10.1145/3293880.3294106](https://doi.org/10.1145/3293880.3294106)
- [Model-Based Testing of Networked Applications](https://doi.org/10.1145/3460319.3464798) doi:[10.1145/3460319.3464798](https://doi.org/10.1145/3460319.3464798)
- [Verifying an HTTP Key-Value Server with Interaction Trees and VST](https://drops.dagstuhl.de/opus/volltexte/2021/13927) doi:[10.4230/LIPIcs.ITP.2021.32](https://doi.org/10.4230/LIPIcs.ITP.2021.32)
- [Testing by Dualization](https://repository.upenn.edu/handle/20.500.14332/32046) doi:[20.500.14332/32046](https://doi.org/20.500.14332/32046)## Building and installation instructions
The easiest way to install the latest released version of coq-http
is via [OPAM](https://opam.ocaml.org/doc/Install.html):```shell
opam repo add coq-released https://coq.inria.fr/opam/released
opam install coq-http
```To instead build and install manually, do:
``` shell
git clone https://github.com/liyishuai/coq-http.git
cd coq-http
make # or make -j
make install
```