Run autobahntestsuite as part of the build
This commit is contained in:
parent
9b0e5b9148
commit
293e34e13f
@ -85,6 +85,27 @@
|
|||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</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>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
</project>
|
</project>
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
* License for the specific language governing permissions and limitations
|
* License for the specific language governing permissions and limitations
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
package io.netty.example.http.websocketx.autobahn;
|
package io.netty.testsuite.websockets.autobahn;
|
||||||
|
|
||||||
import io.netty.bootstrap.ServerBootstrap;
|
import io.netty.bootstrap.ServerBootstrap;
|
||||||
import io.netty.buffer.PooledByteBufAllocator;
|
import io.netty.buffer.PooledByteBufAllocator;
|
@ -13,7 +13,7 @@
|
|||||||
* License for the specific language governing permissions and limitations
|
* License for the specific language governing permissions and limitations
|
||||||
* under the License.
|
* 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.ByteBuf;
|
||||||
import io.netty.buffer.Unpooled;
|
import io.netty.buffer.Unpooled;
|
@ -13,7 +13,7 @@
|
|||||||
* License for the specific language governing permissions and limitations
|
* License for the specific language governing permissions and limitations
|
||||||
* under the License.
|
* 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.ChannelInitializer;
|
||||||
import io.netty.channel.ChannelPipeline;
|
import io.netty.channel.ChannelPipeline;
|
@ -60,5 +60,5 @@
|
|||||||
*
|
*
|
||||||
* <p>10. See the results in <tt>./reports/servers/index.html</tt>
|
* <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