:toc: macro toc::[]
#access it using docgist here#
= Computer benchmarks based on JavaEE integration & functional tests :icons: font :linkattrs: :sectanchors:
| trying to run docker image in my cube tests. Its the same as ftests project from arquillian-cube project. | |
| [source,xml] | |
| .arquillian.xml | |
| ---- | |
| <extension qualifier="docker"> | |
| <property name="serverVersion">1.12</property> | |
| <property name="serverUri">http://localhost:2375</property> | |
| <property name="autoStartContainers">tomcat_default</property> |
| I am facing an issue with autoStartContainers. The problem is that when image is built the container is also created, buildImageCmd.exe() - http://i.imgur.com/HFUy3Qm.png[img1]. So when the create container command is fired with createContainerCmd.exec() - http://i.imgur.com/caGBfQy.png[img2] I receive "Conflict, the name wildfly is already assigned to.... ". Am I doing something wrong? here is my arquillian.xml: | |
| [source,xml] | |
| .arquillian.xml | |
| ---- | |
| <arquillian xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xmlns="http://jboss.org/schema/arquillian" | |
| xsi:schemaLocation=" | |
| http://jboss.org/schema/arquillian | |
| http://jboss.org/schema/arquillian/arquillian_1_0.xsd"> |
:toc: macro toc::[]
#access it using docgist here#
= Computer benchmarks based on JavaEE integration & functional tests :icons: font :linkattrs: :sectanchors:
package com.myapp.util;<properties>
<asciidoctorj.pdf.version>1.5.0-alpha.16</asciidoctorj.pdf.version>
<asciidoctorj.version>1.5.6</asciidoctorj.version>
<jruby.version>9.1.12.0</jruby.version>
</properties>
<plugin>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctor-maven-plugin</artifactId>
@RunWith(Arquillian.class)
@MyInterceptor
public class ItTest {
@Deployment
public static Archive<?> createDeployment() {
WebArchive war = Deployments.getBaseDeployment();asciidoctor: WARNING: conversion missing in backend pdf for pass
org.jruby.exceptions.RaiseException: (NameError) no method 'process' for arguments (org.jruby.RubyObject,org.jruby.RubyObject) on Java::ComGithubCukedoctorExtension::CukedoctorScriptExtension
available overloads:
(org.asciidoctor.ast.Document,java.lang.String)
(org.asciidoctor.ast.DocumentRuby,java.lang.String)
at org.jruby.RubyMethod.call(org/jruby/RubyMethod.java:132)
at RUBY.convert(C:/Ruby21/lib/ruby/gems/2.1.0/gems/asciidoctor-1.5.2/lib/asciidoctor/document.rb:1034)
at org.jruby.RubyArray.each(org/jruby/RubyArray.java:1613)
| [INFO] Arquillian Cube Containerless ..................... SUCCESS [0.005s] | |
| [INFO] Arquillian Cukes In Space ......................... SUCCESS [0.028s] | |
| [INFO] Arquillian Universe Test .......................... FAILURE [37.442s] | |
| [INFO] ------------------------------------------------------------------------ | |
| [INFO] BUILD FAILURE | |
| [INFO] ------------------------------------------------------------------------ | |
| [INFO] Total time: 45.906s | |
| [INFO] Finished at: Fri Sep 25 09:40:50 BRT 2015 | |
| [INFO] Final Memory: 15M/116M | |
| [INFO] ------------------------------------------------------------------------ |
import java.io.Serializable;
import java.util.Collection;
import java.util.Map;
/**
* Created by rafael-pestano on 26/06/2015. assertions utils
*
*/