blob: 90e5aea2c055ab8e4240e8a5cdc2a0e2b39d4644 [file] [log] [blame]
/*
* Copyright (c) 2011 Google Inc.
*
* All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse
* Public License v1.0 which accompanies this distribution, and is available at
*
* http://www.eclipse.org/legal/epl-v10.html
*/
package com.google.eclipse.protobuf.model.util;
import static com.google.eclipse.protobuf.junit.core.UnitTestModule.unitTestModule;
import static com.google.eclipse.protobuf.junit.core.XtextRule.overrideRuntimeModuleWith;
import static org.eclipse.xtext.nodemodel.util.NodeModelUtils.getNode;
import static org.junit.Assert.*;
import org.eclipse.xtext.nodemodel.*;
import org.junit.*;
import com.google.eclipse.protobuf.junit.core.XtextRule;
import com.google.inject.Inject;
/**
* Test for <code>{@link INodes#isCommentOrString(INode)}</code>
*
* @author alruiz@google.com (Alex Ruiz)
*/
public class INodes_isCommentOrString_Test {
@Rule public XtextRule xtext = overrideRuntimeModuleWith(unitTestModule());
@Inject private INodes nodes;
// syntax = "proto2";
//
// // This is a test.
// message Person {}
@Test public void should_return_true_if_node_belongs_to_single_line_comment() {
ILeafNode commentNode = xtext.findNode("// This is a test.");
assertTrue(nodes.isCommentOrString(commentNode));
}
// syntax = "proto2";
//
// /* This is a test. */
// message Person {}
@Test public void should_return_true_if_node_belongs_to_multiple_line_comment() {
ILeafNode commentNode = xtext.findNode("/* This is a test. */");
assertTrue(nodes.isCommentOrString(commentNode));
}
// syntax = "proto2";
//
// message Person {
// optional string name = 1 [default = 'Alex'];
// }
@Test public void should_return_true_if_node_belongs_to_string() {
ILeafNode node = xtext.findNode("'Alex'");
assertTrue(nodes.isCommentOrString(node));
}
// syntax = "proto2";
//
// message Person {}
@Test public void should_return_false_if_node_does_not_belong_to_any_comment_or_string() {
ICompositeNode node = getNode(xtext.root());
assertFalse(nodes.isCommentOrString(node));
}
}