Run autobahntestsuite as part of the build
This commit is contained in:
parent
9b0e5b9148
commit
293e34e13f
@ -85,6 +85,27 @@
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>me.normanmaurer.maven.autobahntestsuite</groupId>
|
||||
<artifactId>autobahntestsuite-maven-plugin</artifactId>
|
||||
<version>0.1.1</version>
|
||||
<configuration>
|
||||
<mainClass>io.netty.testsuite.websockets.autobahn.AutobahnServer</mainClass>
|
||||
<cases>
|
||||
<case>*</case>
|
||||
</cases>
|
||||
<excludeCases></excludeCases>
|
||||
<failOnNonStrict>false</failOnNonStrict>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>test</phase>
|
||||
<goals>
|
||||
<goal>fuzzingclient</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
||||
|
@ -13,7 +13,7 @@
|
||||
* License for the specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
package io.netty.example.http.websocketx.autobahn;
|
||||
package io.netty.testsuite.websockets.autobahn;
|
||||
|
||||
import io.netty.bootstrap.ServerBootstrap;
|
||||
import io.netty.buffer.PooledByteBufAllocator;
|
@ -13,7 +13,7 @@
|
||||
* License for the specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
package io.netty.example.http.websocketx.autobahn;
|
||||
package io.netty.testsuite.websockets.autobahn;
|
||||
|
||||
import io.netty.buffer.ByteBuf;
|
||||
import io.netty.buffer.Unpooled;
|
@ -13,7 +13,7 @@
|
||||
* License for the specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
package io.netty.example.http.websocketx.autobahn;
|
||||
package io.netty.testsuite.websockets.autobahn;
|
||||
|
||||
import io.netty.channel.ChannelInitializer;
|
||||
import io.netty.channel.ChannelPipeline;
|
@ -60,5 +60,5 @@
|
||||
*
|
||||
* <p>10. See the results in <tt>./reports/servers/index.html</tt>
|
||||
*/
|
||||
package io.netty.example.http.websocketx.autobahn;
|
||||
package io.netty.testsuite.websockets.autobahn;
|
||||
|
Loading…
Reference in New Issue
Block a user