Author: manaRH
Date: 2012-05-28 09:04:53 -0400 (Mon, 28 May 2012)
New Revision: 14775
Removed:
branches/enterprise/WFK-2_0/examples-ee6/restbay/restbay-tests/src/test/resources-integration/testng.xml
branches/enterprise/WFK-2_0/examples-ee6/restbay/restbay-tests/src/test/resources/WEB-INF/components.xml
branches/enterprise/WFK-2_0/examples-ee6/restbay/restbay-tests/src/test/resources/seam.properties
Log:
restbay tests cleanup
Signed-off-by: Marek Novotn?\195?\189 <hotmana76(a)gmail.com>
Deleted:
branches/enterprise/WFK-2_0/examples-ee6/restbay/restbay-tests/src/test/resources/WEB-INF/components.xml
===================================================================
---
branches/enterprise/WFK-2_0/examples-ee6/restbay/restbay-tests/src/test/resources/WEB-INF/components.xml 2012-05-28
13:04:41 UTC (rev 14774)
+++
branches/enterprise/WFK-2_0/examples-ee6/restbay/restbay-tests/src/test/resources/WEB-INF/components.xml 2012-05-28
13:04:53 UTC (rev 14775)
@@ -1,63 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<components
xmlns="http://jboss.com/products/seam/components"
-
xmlns:core="http://jboss.com/products/seam/core"
-
xmlns:persistence="http://jboss.com/products/seam/persistence"
-
xmlns:security="http://jboss.com/products/seam/security"
-
xmlns:drools="http://jboss.com/products/seam/drools"
-
xmlns:async="http://jboss.com/products/seam/async"
-
xmlns:web="http://jboss.com/products/seam/web"
-
xmlns:resteasy="http://jboss.com/products/seam/resteasy"
-
xmlns:framework="http://jboss.com/products/seam/framework"
-
xmlns:transaction="http://jboss.com/products/seam/transaction"
-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation=
- "http://jboss.com/products/seam/core
http://jboss.com/products/seam/core-2.3.xsd
-
http://jboss.com/products/seam/persistence
http://jboss.com/products/seam/persistence-2.3.xsd
-
http://jboss.com/products/seam/components
http://jboss.com/products/seam/components-2.3.xsd
-
http://jboss.com/products/seam/async
http://jboss.com/products/seam/async-2.3.xsd
-
http://jboss.com/products/seam/web
http://jboss.com/products/seam/web-2.3.xsd
-
http://jboss.com/products/seam/security
http://jboss.com/products/seam/security-2.3.xsd
-
http://jboss.com/products/seam/resteasy
http://jboss.com/products/seam/resteasy-2.3.xsd
-
http://jboss.com/products/seam/framework
http://jboss.com/products/seam/framework-2.3.xsd
-
http://jboss.com/products/seam/transaction
http://jboss.com/products/seam/transaction-2.3.xsd
-
http://jboss.com/products/seam/drools
http://jboss.com/products/seam/drools-2.3.xsd">
-
- <core:init jndi-pattern="#{ejbName}/local" debug="true"/>
-
- <core:manager conversation-timeout="120000"
- concurrent-request-timeout="500"
- conversation-id-parameter="cid"/>
-
- <transaction:ejb-transaction />
-
- <persistence:managed-persistence-context name="entityManager"
auto-create="true"
-
persistence-unit-jndi-name="java:/restbayEntityManagerFactory"/>
-
- <async:quartz-dispatcher/>
-
- <framework:entity-home name="categoryHome"
-
entity-class="org.jboss.seam.example.restbay.Category"
- auto-create="true"/>
-
- <resteasy:application resource-path-prefix="/restv1">
- <resteasy:resource-class-names>
-
<value>org.jboss.seam.example.restbay.resteasy.statelessejb.StatelessEjbTestResourceBean</value>
- </resteasy:resource-class-names>
- </resteasy:application>
-
- <resteasy:resource-home path="/configuredCategory"
name="configuredCategoryResourceHome"
- entity-home="#{categoryHome}"
entity-id-class="java.lang.Integer"
- media-types="application/xml
application/json"/>
-
- <resteasy:resource-query path="/configuredCategory"
name="configuredCategoryResourceQuery"
-
entity-class="org.jboss.seam.example.restbay.Category"
- media-types="application/xml
application/json"/>
-
- <web:authentication-filter
- url-pattern="/seam/resource/restv1/secured/*"
- auth-type="basic"
- realm="Seam RestBay Application"/>
-
- <security:identity
authenticate-method="#{testAuthenticator.authenticate}" />
-
-</components>
\ No newline at end of file
Deleted:
branches/enterprise/WFK-2_0/examples-ee6/restbay/restbay-tests/src/test/resources/seam.properties
===================================================================
Deleted:
branches/enterprise/WFK-2_0/examples-ee6/restbay/restbay-tests/src/test/resources-integration/testng.xml
===================================================================
---
branches/enterprise/WFK-2_0/examples-ee6/restbay/restbay-tests/src/test/resources-integration/testng.xml 2012-05-28
13:04:41 UTC (rev 14774)
+++
branches/enterprise/WFK-2_0/examples-ee6/restbay/restbay-tests/src/test/resources-integration/testng.xml 2012-05-28
13:04:53 UTC (rev 14775)
@@ -1,57 +0,0 @@
-<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >
-
-<suite name="RestBay" verbose="2" parallel="false">
-
- <test name="RestBay Basic Services">
- <classes>
- <class
name="org.jboss.seam.example.restbay.test.BasicServiceTest"/>
- </classes>
- </test>
-
- <test name="RestBay Auction Services">
- <classes>
- <class
name="org.jboss.seam.example.restbay.test.AuctionServiceTest"/>
- </classes>
- </test>
-
- <test name="RestBay ResourceHome">
- <classes>
- <class
name="org.jboss.seam.example.restbay.test.ResourceHomeTest"/>
- </classes>
- </test>
-
- <test name="RestBay ResourceQuery">
- <classes>
- <class
name="org.jboss.seam.example.restbay.test.ResourceQueryTest"/>
- </classes>
- </test>
-
- <test name="RestBay Security">
- <classes>
- <class name="org.jboss.seam.example.restbay.test.SecurityTest"/>
- </classes>
- </test>
-
- <test name="RestBay Subresources">
- <classes>
- <class
name="org.jboss.seam.example.restbay.test.SubresourceTest"/>
- </classes>
- </test>
-
- <test name="RestBay Context Data">
- <classes>
- <class
name="org.jboss.seam.example.restbay.test.ContextDataTest"/>
- </classes>
- </test>
-
- <test name="RestBay DBUnit Integration">
-
- <parameter name="database" value="hsql"/>
- <parameter name="datasourceJndiName"
value="java:/restbayDatasource"/>
-
- <classes>
- <class
name="org.jboss.seam.example.restbay.test.CategoryServiceDBUnitTest"/>
- </classes>
- </test>
-
-</suite>