websvc.restkit/test/qa-functional/src/org/netbeans/modules/ws/qaf/rest/RestSamplesTest.java
author Jaroslav Tulach <jtulach@netbeans.org>
Sun Nov 22 11:35:02 2009 +0100 (10 hours ago)
changeset 154033 fa8b12981306
parent 147766be56b93ec8e3
permissions -rw-r--r--
Merge RP javadoc improvements
     1 /*
     2  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     3  *
     4  * Copyright 1997-2009 Sun Microsystems, Inc. All rights reserved.
     5  *
     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]"
    23  *
    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.
    34  *
    35  * Contributor(s):
    36  *
    37  * Portions Copyrighted 2008 Sun Microsystems, Inc.
    38  */
    39 
    40 package org.netbeans.modules.ws.qaf.rest;
    41 
    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;
    48 
    49 /**
    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.
    52  *
    53  * Duration of this test suite: aprox. 4min
    54  *
    55  * @author lukas
    56  */
    57 public class RestSamplesTest extends RestTestBase {
    58 
    59     public RestSamplesTest(String name) {
    60         super(name);
    61     }
    62 
    63     @Override
    64     public void tearDown() throws Exception {
    65         super.tearDown();
    66         undeployProject(getProjectName());
    67     }
    68 
    69     @Override
    70     protected String getProjectName() {
    71         return getName().substring(4);
    72     }
    73 
    74     @Override
    75     protected ProjectType getProjectType() {
    76         return ProjectType.SAMPLE;
    77     }
    78 
    79     @Override
    80     protected String getSamplesCategoryName() {
    81         return Bundle.getStringTrimmed("org.netbeans.modules.websvc.rest.samples.resources.Bundle", "Templates/Project/Samples/Metro");
    82     }
    83 
    84     /**
    85      * Test HelloWorld Sample
    86      *
    87      * @throws java.io.IOException
    88      * @throws java.net.MalformedURLException
    89      * @throws org.xml.sax.SAXException
    90      */
    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());
    95     }
    96 
    97     /**
    98      * Test Customer Database Sample
    99      *
   100      * @throws java.io.IOException
   101      */
   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());
   106     }
   107 
   108     /**
   109      * Test Customer Database on Spring Sample
   110      *
   111      * @throws java.io.IOException
   112      */
   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());
   117     }
   118 
   119     /**
   120      * Test Message Board Sample
   121      *
   122      * @throws java.io.IOException
   123      */
   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());
   128     }
   129 
   130     /**
   131      * Creates suite from particular test cases. You can define order of testcases here.
   132      */
   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
   140     }
   141 }