]> source.dussan.org Git - archiva.git/blob
8db84ea358f7dca9fe02e92639738a1197dfcca2
[archiva.git] /
1 package org.apache.maven.archiva.web.startup;
2
3 /*
4  * Licensed to the Apache Software Foundation (ASF) under one
5  * or more contributor license agreements.  See the NOTICE file
6  * distributed with this work for additional information
7  * regarding copyright ownership.  The ASF licenses this file
8  * to you under the Apache License, Version 2.0 (the
9  * "License"); you may not use this file except in compliance
10  * with the License.  You may obtain a copy of the License at
11  *
12  *  http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing,
15  * software distributed under the License is distributed on an
16  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17  * KIND, either express or implied.  See the License for the
18  * specific language governing permissions and limitations
19  * under the License.
20  */
21
22 import org.apache.commons.io.IOUtils;
23
24 import java.io.File;
25 import java.io.FileInputStream;
26 import java.io.IOException;
27 import java.util.zip.GZIPInputStream;
28
29 import junit.framework.TestCase;
30
31 /**
32  * BannerTest 
33  *
34  * @version $Id$
35  */
36 public class BannerTest
37     extends TestCase
38 {
39     private static final String eol = System.getProperty("line.separator");
40
41     private void assertEncodeDecode( String encoded, String decoded )
42     {
43         assertEquals( "Encoding: ", encoded, Banner.encode( decoded ) );
44         assertEquals( "Decoding: ", decoded, Banner.decode( encoded ) );
45     }
46
47     public void testEncodeDecode()
48     {
49         assertEncodeDecode( "[$10 ]", "[          ]" );
50         assertEncodeDecode( "$$$5_$n$5_", "$_____"+eol+"_____" );
51         assertEncodeDecode( "$${Refgjuvyr}", "${Erstwhile}" );
52     }
53
54     public void testInjectVersion()
55     {
56         assertEquals( "[ 1.0 ]", Banner.injectVersion( "[#####]", "1.0" ) );
57         assertEquals( ".\\  1.0-SNAPSHOT  \\._____", Banner.injectVersion( ".\\################\\._____",
58                                                                            "1.0-SNAPSHOT" ) );
59         assertEquals( "Archiva:\"+eol+\" ( 1.0-alpha-1  )", Banner
60             .injectVersion( "Archiva:\"+eol+\" (##############)", "1.0-alpha-1" ) );
61     }
62
63     public void testGetBanner()
64         throws IOException
65     {
66         String version = "1.0-alpha-1-SNAPSHOT";
67         String banner = Banner.getBanner( version );
68         assertNotNull( "Banner should not be null.", banner );
69         assertTrue( "Banner contains version.", banner.indexOf( version ) > 0 );
70         
71         /* Want to make a new banner?
72          * Steps to do it.
73          * 1) Edit the src/test/resources/banner.gz file.
74          * 2) Save it compressed.
75          * 3) Add (to this test method) ...
76          *    System.out.println( "\"" + Banner.encode( getRawBanner() ) + "\"" );
77          * 4) Run the test
78          * 5) Copy / Paste the encoded form into the Banner.getBanner() method.
79          */
80     }
81
82     public String getRawBanner()
83         throws IOException
84     {
85         File gzBanner = new File( "src/test/resources/banner.gz" );
86         assertTrue( "File [" + gzBanner.getPath() + "] not found.", gzBanner.exists() );
87         FileInputStream fis = new FileInputStream( gzBanner );
88         GZIPInputStream gzis = new GZIPInputStream( fis );
89         return IOUtils.toString( gzis );
90     }
91 }