/projects/netbeans-7.3/php.doctrine2/test/unit/src/org/netbeans/modules/php/doctrine2/annotations/orm/parser/DiscriminatorColumnLineParserTest.java
https://gitlab.com/essere.lab.public/qualitas.class-corpus · Java · 209 lines · 144 code · 20 blank · 45 comment · 8 complexity · f5a91bace4c0a47d9da96e3d01667da4 MD5 · raw file
- package org.netbeans.modules.php.doctrine2.annotations.orm.parser;
- import java.util.Map;
- import org.netbeans.junit.NbTestCase;
- import org.netbeans.modules.csl.api.OffsetRange;
- import org.netbeans.modules.php.spi.annotation.AnnotationLineParser;
- import org.netbeans.modules.php.spi.annotation.AnnotationParsedLine;
- import org.netbeans.modules.php.spi.annotation.AnnotationParsedLine.ParsedLine;
- /*
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
- *
- * Copyright 2012 Oracle and/or its affiliates. All rights reserved.
- *
- * Oracle and Java are registered trademarks of Oracle and/or its affiliates.
- * Other names may be trademarks of their respective owners.
- *
- * The contents of this file are subject to the terms of either the GNU
- * General Public License Version 2 only ("GPL") or the Common
- * Development and Distribution License("CDDL") (collectively, the
- * "License"). You may not use this file except in compliance with the
- * License. You can obtain a copy of the License at
- * http://www.netbeans.org/cddl-gplv2.html
- * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
- * specific language governing permissions and limitations under the
- * License. When distributing the software, include this License Header
- * Notice in each file and include the License file at
- * nbbuild/licenses/CDDL-GPL-2-CP. Oracle designates this
- * particular file as subject to the "Classpath" exception as provided
- * by Oracle in the GPL Version 2 section of the License file that
- * accompanied this code. If applicable, add the following below the
- * License Header, with the fields enclosed by brackets [] replaced by
- * your own identifying information:
- * "Portions Copyrighted [year] [name of copyright owner]"
- *
- * If you wish your version of this file to be governed by only the CDDL
- * or only the GPL Version 2, indicate your decision by adding
- * "[Contributor] elects to include this software in this distribution
- * under the [CDDL or GPL Version 2] license." If you do not indicate a
- * single choice of license, a recipient has the option to distribute
- * your version of this file under either the CDDL, the GPL Version 2 or
- * to extend the choice of license to its licensees as provided above.
- * However, if you add GPL Version 2 code and therefore, elected the GPL
- * Version 2 license, then the option applies only if the new code is
- * made subject to such option by the copyright holder.
- *
- * Contributor(s):
- *
- * Portions Copyrighted 2012 Sun Microsystems, Inc.
- */
- /**
- *
- * @author Ondrej Brejla <obrejla@netbeans.org>
- */
- public class DiscriminatorColumnLineParserTest extends NbTestCase {
- private ParameterizedAnnotationLineParser parser;
- public DiscriminatorColumnLineParserTest(String name) {
- super(name);
- }
- @Override
- protected void setUp() throws Exception {
- super.setUp();
- this.parser = new ParameterizedAnnotationLineParser();
- }
- public void testIsAnnotationParser() throws Exception {
- assertTrue(parser instanceof AnnotationLineParser);
- }
- public void testReturnValueIsDiscriminatorColumnParsedLine_01() throws Exception {
- assertTrue(parser.parse("DiscriminatorColumn") instanceof ParsedLine);
- }
- public void testReturnValueIsDiscriminatorColumnParsedLine_02() throws Exception {
- assertTrue(parser.parse("Annotations\\DiscriminatorColumn") instanceof ParsedLine);
- }
- public void testReturnValueIsDiscriminatorColumnParsedLine_03() throws Exception {
- assertTrue(parser.parse("\\Foo\\Bar\\DiscriminatorColumn") instanceof ParsedLine);
- }
- public void testReturnValueIsDiscriminatorColumnParsedLine_04() throws Exception {
- assertTrue(parser.parse("Annotations\\DiscriminatorColumn(type=\"string\", length=32)") instanceof ParsedLine);
- }
- public void testReturnValueIsNull() throws Exception {
- assertNull(parser.parse("DiscriminatorColumns"));
- }
- public void testValidUseCase_01() throws Exception {
- AnnotationParsedLine parsedLine = parser.parse("DiscriminatorColumn");
- assertEquals("DiscriminatorColumn", parsedLine.getName());
- assertEquals("", parsedLine.getDescription());
- Map<OffsetRange, String> types = parsedLine.getTypes();
- for (Map.Entry<OffsetRange, String> entry : types.entrySet()) {
- OffsetRange offsetRange = entry.getKey();
- String value = entry.getValue();
- assertEquals(0, offsetRange.getStart());
- assertEquals(19, offsetRange.getEnd());
- assertEquals("DiscriminatorColumn", value);
- }
- }
- public void testValidUseCase_02() throws Exception {
- AnnotationParsedLine parsedLine = parser.parse("DiscriminatorColumn ");
- assertEquals("DiscriminatorColumn", parsedLine.getName());
- assertEquals("", parsedLine.getDescription());
- Map<OffsetRange, String> types = parsedLine.getTypes();
- for (Map.Entry<OffsetRange, String> entry : types.entrySet()) {
- OffsetRange offsetRange = entry.getKey();
- String value = entry.getValue();
- assertEquals(0, offsetRange.getStart());
- assertEquals(19, offsetRange.getEnd());
- assertEquals("DiscriminatorColumn", value);
- }
- }
- public void testValidUseCase_03() throws Exception {
- AnnotationParsedLine parsedLine = parser.parse("DiscriminatorColumn\t\t ");
- assertEquals("DiscriminatorColumn", parsedLine.getName());
- assertEquals("", parsedLine.getDescription());
- Map<OffsetRange, String> types = parsedLine.getTypes();
- for (Map.Entry<OffsetRange, String> entry : types.entrySet()) {
- OffsetRange offsetRange = entry.getKey();
- String value = entry.getValue();
- assertEquals(0, offsetRange.getStart());
- assertEquals(19, offsetRange.getEnd());
- assertEquals("DiscriminatorColumn", value);
- }
- }
- public void testValidUseCase_04() throws Exception {
- AnnotationParsedLine parsedLine = parser.parse("DiscriminatorColumn(type=\"string\", length=32)");
- assertEquals("DiscriminatorColumn", parsedLine.getName());
- assertEquals("(type=\"string\", length=32)", parsedLine.getDescription());
- Map<OffsetRange, String> types = parsedLine.getTypes();
- assertNotNull(types);
- for (Map.Entry<OffsetRange, String> entry : types.entrySet()) {
- OffsetRange offsetRange = entry.getKey();
- String value = entry.getValue();
- assertEquals(0, offsetRange.getStart());
- assertEquals(19, offsetRange.getEnd());
- assertEquals("DiscriminatorColumn", value);
- }
- }
- public void testValidUseCase_05() throws Exception {
- AnnotationParsedLine parsedLine = parser.parse("Annotations\\DiscriminatorColumn(type=\"string\", length=32) \t");
- assertEquals("DiscriminatorColumn", parsedLine.getName());
- assertEquals("(type=\"string\", length=32)", parsedLine.getDescription());
- Map<OffsetRange, String> types = parsedLine.getTypes();
- assertNotNull(types);
- for (Map.Entry<OffsetRange, String> entry : types.entrySet()) {
- OffsetRange offsetRange = entry.getKey();
- String value = entry.getValue();
- assertEquals(0, offsetRange.getStart());
- assertEquals(31, offsetRange.getEnd());
- assertEquals("Annotations\\DiscriminatorColumn", value);
- }
- }
- public void testValidUseCase_06() throws Exception {
- AnnotationParsedLine parsedLine = parser.parse("\\Foo\\Bar\\DiscriminatorColumn(type=\"string\", length=32) \t");
- assertEquals("DiscriminatorColumn", parsedLine.getName());
- assertEquals("(type=\"string\", length=32)", parsedLine.getDescription());
- Map<OffsetRange, String> types = parsedLine.getTypes();
- assertNotNull(types);
- for (Map.Entry<OffsetRange, String> entry : types.entrySet()) {
- OffsetRange offsetRange = entry.getKey();
- String value = entry.getValue();
- assertEquals(0, offsetRange.getStart());
- assertEquals(28, offsetRange.getEnd());
- assertEquals("\\Foo\\Bar\\DiscriminatorColumn", value);
- }
- }
- public void testValidUseCase_07() throws Exception {
- AnnotationParsedLine parsedLine = parser.parse("discriminatorcolumn");
- assertEquals("DiscriminatorColumn", parsedLine.getName());
- assertEquals("", parsedLine.getDescription());
- Map<OffsetRange, String> types = parsedLine.getTypes();
- for (Map.Entry<OffsetRange, String> entry : types.entrySet()) {
- OffsetRange offsetRange = entry.getKey();
- String value = entry.getValue();
- assertEquals(0, offsetRange.getStart());
- assertEquals(19, offsetRange.getEnd());
- assertEquals("discriminatorcolumn", value);
- }
- }
- public void testValidUseCase_08() throws Exception {
- AnnotationParsedLine parsedLine = parser.parse("\\Foo\\Bar\\discriminatorcolumn(type=\"string\", length=32) \t");
- assertEquals("DiscriminatorColumn", parsedLine.getName());
- assertEquals("(type=\"string\", length=32)", parsedLine.getDescription());
- Map<OffsetRange, String> types = parsedLine.getTypes();
- assertNotNull(types);
- for (Map.Entry<OffsetRange, String> entry : types.entrySet()) {
- OffsetRange offsetRange = entry.getKey();
- String value = entry.getValue();
- assertEquals(0, offsetRange.getStart());
- assertEquals(28, offsetRange.getEnd());
- assertEquals("\\Foo\\Bar\\discriminatorcolumn", value);
- }
- }
- }