View Javadoc

1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *   http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied.  See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  
20  package org.apache.myfaces.tobago.layout;
21  
22  import org.junit.Assert;
23  import org.junit.Test;
24  
25  public class LayoutTokensUnitTest {
26  
27    @Test
28    public void testIsPixelToken() {
29      Assert.assertTrue(LayoutTokens.isPixelToken("120px"));
30    }
31  
32    @Test
33    public void testIsPercentToken() {
34      Assert.assertTrue(LayoutTokens.isPercentToken("50%"));
35    }
36  
37    @Test
38    public void testIsRelativeToken() {
39      Assert.assertTrue(LayoutTokens.isRelativeToken("3*"));
40    }
41  
42    @Test
43    public void testIsNumberAndSuffix() {
44      Assert.assertTrue(LayoutTokens.isNumberAndSuffix("34cm", "cm"));
45      Assert.assertFalse(LayoutTokens.isNumberAndSuffix("acm", "cm"));
46      Assert.assertFalse(LayoutTokens.isNumberAndSuffix("cm", "cm"));
47    }
48  
49    @Test
50    public void testParseToken() {
51      Assert.assertEquals(AutoLayoutToken.INSTANCE, LayoutTokens.parseToken(null));
52      Assert.assertEquals(RelativeLayoutToken.DEFAULT_INSTANCE, LayoutTokens.parseToken("*"));
53      Assert.assertEquals(new RelativeLayoutToken(3), LayoutTokens.parseToken("3*"));
54      Assert.assertEquals(new PercentLayoutToken(33), LayoutTokens.parseToken("33%"));
55      Assert.assertEquals(new PixelLayoutToken(120), LayoutTokens.parseToken("120px"));
56    }
57  }