Merge pull request #12639 from rmuir/improve_integ

Don't use port 9200/9300 for integration tests
This commit is contained in:
Robert Muir 2015-08-04 13:09:47 -04:00
commit 29d73accdd
5 changed files with 11 additions and 4 deletions

View File

@ -16,6 +16,7 @@
<property name="integ.args" <property name="integ.args"
value="-Des.node.name=smoke_tester -Des.cluster.name=prepare_release value="-Des.node.name=smoke_tester -Des.cluster.name=prepare_release
-Des.discovery.zen.ping.multicast.enabled=false -Des.script.inline=on -Des.discovery.zen.ping.multicast.enabled=false -Des.script.inline=on
-Des.http.port=${integ.http.port} -Des.transport.tcp.port=${integ.transport.port}
-Des.script.indexed=on -Des.pidfile=${integ.pidfile} -Des.repositories.url.allowed_urls=http://snapshot.test*"/> -Des.script.indexed=on -Des.pidfile=${integ.pidfile} -Des.repositories.url.allowed_urls=http://snapshot.test*"/>
<!-- runs an OS script --> <!-- runs an OS script -->
@ -122,7 +123,7 @@
args="@{args} -Des.path.repo=@{home}/repo" /> args="@{args} -Des.path.repo=@{home}/repo" />
<waitfor maxwait="3" maxwaitunit="minute" checkevery="500"> <waitfor maxwait="3" maxwaitunit="minute" checkevery="500">
<http url="http://127.0.0.1:9200"/> <http url="http://127.0.0.1:${integ.http.port}"/>
</waitfor> </waitfor>
<local name="integ.pid"/> <local name="integ.pid"/>

View File

@ -174,7 +174,7 @@
<parallelism>1</parallelism> <parallelism>1</parallelism>
<systemProperties> <systemProperties>
<!-- use external cluster --> <!-- use external cluster -->
<tests.cluster>127.0.0.1:9300</tests.cluster> <tests.cluster>127.0.0.1:${integ.transport.port}</tests.cluster>
</systemProperties> </systemProperties>
</configuration> </configuration>
</execution> </execution>

View File

@ -66,7 +66,11 @@
</goals> </goals>
<configuration> <configuration>
<target if="${run}"> <target if="${run}">
<ant antfile="${elasticsearch.integ.antfile}" target="start-foreground"/> <!-- use conventional port numbers -->
<ant antfile="${elasticsearch.integ.antfile}" target="start-foreground">
<property name="integ.http.port" value="9200"/>
<property name="integ.transport.port" value="9300"/>
</ant>
</target> </target>
</configuration> </configuration>
</execution> </execution>

View File

@ -409,7 +409,7 @@
<parallelism>1</parallelism> <parallelism>1</parallelism>
<systemProperties> <systemProperties>
<!-- use external cluster --> <!-- use external cluster -->
<tests.cluster>127.0.0.1:9300</tests.cluster> <tests.cluster>127.0.0.1:${integ.transport.port}</tests.cluster>
</systemProperties> </systemProperties>
</configuration> </configuration>
</execution> </execution>

View File

@ -109,6 +109,8 @@
<integ.scratch>${project.build.directory}/integ-tests</integ.scratch> <integ.scratch>${project.build.directory}/integ-tests</integ.scratch>
<integ.deps>${project.build.directory}/integ-deps</integ.deps> <integ.deps>${project.build.directory}/integ-deps</integ.deps>
<integ.temp>${integ.scratch}/temp</integ.temp> <integ.temp>${integ.scratch}/temp</integ.temp>
<integ.http.port>9400</integ.http.port>
<integ.transport.port>9500</integ.transport.port>
<no.commit.pattern>\bno(n|)commit\b</no.commit.pattern> <no.commit.pattern>\bno(n|)commit\b</no.commit.pattern>
</properties> </properties>