websvc.restkit/test/qa-functional/src/org/netbeans/modules/ws/qaf/rest/RestSamplesTest.java
2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
4 * Copyright 1997-2009 Sun Microsystems, Inc. All rights reserved.
6 * The contents of this file are subject to the terms of either the GNU
7 * General Public License Version 2 only ("GPL") or the Common
8 * Development and Distribution License("CDDL") (collectively, the
9 * "License"). You may not use this file except in compliance with the
10 * License. You can obtain a copy of the License at
11 * http://www.netbeans.org/cddl-gplv2.html
12 * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
13 * specific language governing permissions and limitations under the
14 * License. When distributing the software, include this License Header
15 * Notice in each file and include the License file at
16 * nbbuild/licenses/CDDL-GPL-2-CP. Sun designates this
17 * particular file as subject to the "Classpath" exception as provided
18 * by Sun in the GPL Version 2 section of the License file that
19 * accompanied this code. If applicable, add the following below the
20 * License Header, with the fields enclosed by brackets [] replaced by
21 * your own identifying information:
22 * "Portions Copyrighted [year] [name of copyright owner]"
24 * If you wish your version of this file to be governed by only the CDDL
25 * or only the GPL Version 2, indicate your decision by adding
26 * "[Contributor] elects to include this software in this distribution
27 * under the [CDDL or GPL Version 2] license." If you do not indicate a
28 * single choice of license, a recipient has the option to distribute
29 * your version of this file under either the CDDL, the GPL Version 2 or
30 * to extend the choice of license to its licensees as provided above.
31 * However, if you add GPL Version 2 code and therefore, elected the GPL
32 * Version 2 license, then the option applies only if the new code is
33 * made subject to such option by the copyright holder.
37 * Portions Copyrighted 2008 Sun Microsystems, Inc.
40 package org.netbeans.modules.ws.qaf.rest;
42 import java.io.IOException;
43 import java.net.MalformedURLException;
44 import junit.framework.Test;
45 import org.netbeans.jellytools.Bundle;
46 import org.netbeans.junit.NbModuleSuite;
47 import org.xml.sax.SAXException;
50 * Tests for REST samples. Simply said - user must be able to only create
51 * and run the particular sample, no additional steps should be needed.
53 * Duration of this test suite: aprox. 4min
57 public class RestSamplesTest extends RestTestBase {
59 public RestSamplesTest(String name) {
64 public void tearDown() throws Exception {
66 undeployProject(getProjectName());
70 protected String getProjectName() {
71 return getName().substring(4);
75 protected ProjectType getProjectType() {
76 return ProjectType.SAMPLE;
80 protected String getSamplesCategoryName() {
81 return Bundle.getStringTrimmed("org.netbeans.modules.websvc.rest.samples.resources.Bundle", "Templates/Project/Samples/Metro");
85 * Test HelloWorld Sample
87 * @throws java.io.IOException
88 * @throws java.net.MalformedURLException
89 * @throws org.xml.sax.SAXException
91 public void testHelloWorldSample() throws IOException, MalformedURLException, SAXException {
92 String sampleName = Bundle.getStringTrimmed("org.netbeans.modules.websvc.rest.samples.resources.Bundle", "Templates/Project/Samples/Metro/HelloWorldSampleProject");
93 createProject(sampleName, getProjectType(), null);
94 deployProject(getProjectName());
98 * Test Customer Database Sample
100 * @throws java.io.IOException
102 public void testCustomerDBSample() throws IOException {
103 String sampleName = Bundle.getStringTrimmed("org.netbeans.modules.websvc.rest.samples.resources.Bundle", "Templates/Project/Samples/Metro/CustomerDBSampleProject");
104 createProject(sampleName, getProjectType(), null);
105 deployProject(getProjectName());
109 * Test Customer Database on Spring Sample
111 * @throws java.io.IOException
113 public void testCustomerDBSpringSample() throws IOException {
114 String sampleName = Bundle.getStringTrimmed("org.netbeans.modules.websvc.rest.samples.resources.Bundle", "Templates/Project/Samples/Metro/CustomerDBSpringSampleProject");
115 createProject(sampleName, getProjectType(), null);
116 deployProject(getProjectName());
120 * Test Message Board Sample
122 * @throws java.io.IOException
124 public void testMessageBoardSample() throws IOException {
125 String sampleName = Bundle.getStringTrimmed("org.netbeans.modules.websvc.rest.samples.resources.Bundle", "Templates/Project/Samples/Metro/MessageBoardSample");
126 createProject(sampleName, getProjectType(), null);
127 deployProject(getProjectName());
131 * Creates suite from particular test cases. You can define order of testcases here.
133 public static Test suite() {
134 return NbModuleSuite.create(addServerTests(Server.GLASSFISH_V3, NbModuleSuite.createConfiguration(RestSamplesTest.class),
135 "testHelloWorldSample", //NOI18N
136 "testCustomerDBSample", //NOI18N
137 "testCustomerDBSpringSample", //NOI18N
138 "testMessageBoardSample" //NOI18N
139 ).enableModules(".*").clusters(".*")); //NOI18N