]> source.dussan.org Git - archiva.git/blob
6f371aece4278e0433a6f7cafd0a38fd5da57e01
[archiva.git] /
1 package org.apache.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 java.io.File;
23 import java.io.FileInputStream;
24 import java.io.IOException;
25 import java.util.zip.GZIPInputStream;
26
27 import org.apache.commons.io.IOUtils;
28
29 import junit.framework.TestCase;
30 import org.apache.archiva.test.utils.ArchivaBlockJUnit4ClassRunner;
31 import org.junit.Test;
32 import org.junit.runner.RunWith;
33 /**
34  * BannerTest
35  *
36  *
37  */
38 @RunWith( ArchivaBlockJUnit4ClassRunner.class )
39 public class BannerTest
40     extends TestCase
41 {
42     private static final String eol = System.getProperty( "line.separator" );
43
44     private void assertEncodeDecode( String encoded, String decoded )
45     {
46         assertEquals( "Encoding: ", encoded, Banner.encode( decoded ) );
47         assertEquals( "Decoding: ", decoded, Banner.decode( encoded ) );
48     }
49     
50     @Test
51     public void testEncodeDecode()
52     {
53         assertEncodeDecode( "[$10 ]", "[          ]" );
54         assertEncodeDecode( "$$$5_$n$5_", "$_____" + eol + "_____" );
55         assertEncodeDecode( "$${Refgjuvyr}", "${Erstwhile}" );
56     }
57     
58     @Test
59     public void testInjectVersion()
60     {
61         assertEquals( "[ 1.0 ]", Banner.injectVersion( "[#####]", "1.0" ) );
62         assertEquals( ".\\  1.0-SNAPSHOT  \\._____",
63                       Banner.injectVersion( ".\\################\\._____", "1.0-SNAPSHOT" ) );
64         assertEquals( "Archiva:\"+eol+\" ( 1.0-alpha-1  )",
65                       Banner.injectVersion( "Archiva:\"+eol+\" (##############)", "1.0-alpha-1" ) );
66     }
67
68     @Test
69     public void testGetBanner()
70         throws IOException
71     {
72         String version = "1.0-alpha-1-SNAPSHOT";
73         String banner = Banner.getBanner( version );
74         assertNotNull( "Banner should not be null.", banner );
75         assertTrue( "Banner contains version.", banner.indexOf( version ) > 0 );
76
77         /* Want to make a new banner?
78         * Steps to do it.
79         * 1) Edit the src/test/resources/banner.gz file.
80         * 2) Save it compressed.
81         * 3) Add (to this test method) ...
82         *    System.out.println( "\"" + Banner.encode( getRawBanner() ) + "\"" );
83         * 4) Run the test
84         * 5) Copy / Paste the encoded form into the Banner.getBanner() method.
85         */
86     }
87
88     public String getRawBanner()
89         throws IOException
90     {
91         File gzBanner = new File( "src/test/resources/banner.gz" );
92         assertTrue( "File [" + gzBanner.getPath() + "] not found.", gzBanner.exists() );
93         FileInputStream fis = new FileInputStream( gzBanner );
94         GZIPInputStream gzis = new GZIPInputStream( fis );
95         String str = IOUtils.toString( gzis );
96         IOUtils.closeQuietly( gzis );
97         return str;
98     }
99 }