blob: 0c3c294e154364a62cd9293100adfa79903ae0df [file] [log] [blame]
/*
* Copyright (c) 2012 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 com.google.eclipse.protobuf.model.util.QualifiedNameCollectionContains.contains;
import static org.junit.Assert.*;
import java.util.Collection;
import org.eclipse.xtext.naming.QualifiedName;
import org.junit.*;
import com.google.eclipse.protobuf.junit.core.XtextRule;
import com.google.eclipse.protobuf.protobuf.Package;
import com.google.inject.Inject;
/**
* Tests for <code>{@link Packages#addPackageNameSegments(Package, QualifiedName)}</code>
*
* @author alruiz@google.com (Alex Ruiz)
*/
public class Packages_addPackageNameSegments_Test {
@Rule public XtextRule xtext = overrideRuntimeModuleWith(unitTestModule());
@Inject private Packages packages;
// syntax = "proto2";
//
// package com.google.test;
@Test public void should_create_a_qualified_name_per_segment_in_package_name() {
Package aPackage = xtext.find("com.google.test", Package.class);
Collection<QualifiedName> names = packages.addPackageNameSegments(aPackage, QualifiedName.create("Person"));
assertThat(names, contains("test.Person", "google.test.Person"));
}
// syntax = "proto2";
//
// package google;
@Test public void should_return_empty_list_if_package_has_only_one_segment() {
Package aPackage = xtext.find("google", Package.class);
Collection<QualifiedName> names = packages.addPackageNameSegments(aPackage, QualifiedName.create("Person"));
assertTrue(names.isEmpty());
}
}