mirror of
https://github.com/ninenines/cowboy.git
synced 2025-07-14 12:20:24 +00:00
Add Autobahn test suite for websockets
We're using the existing test suite for websocket servers from the Autobahn project to verify that out websockets implementation is sane. A CT test suite and python module wrapping the test suite has been added. The test suite is run when the 'make inttests' target is executed.
This commit is contained in:
parent
4b93c2d19a
commit
8808825173
4 changed files with 213 additions and 1 deletions
7
Makefile
7
Makefile
|
@ -18,11 +18,16 @@ clean:
|
|||
|
||||
tests: clean app eunit ct
|
||||
|
||||
inttests: clean app eunit intct
|
||||
|
||||
eunit:
|
||||
@$(REBAR) eunit skip_deps=true
|
||||
|
||||
ct:
|
||||
@$(REBAR) ct skip_deps=true
|
||||
@$(REBAR) ct skip_deps=true suites=http,ws
|
||||
|
||||
intct:
|
||||
@$(REBAR) ct skip_deps=true suites=http,ws,autobahn
|
||||
|
||||
build-plt:
|
||||
@$(DIALYZER) --build_plt --output_plt .cowboy_dialyzer.plt \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue