blob: 61bb9eecc26af7afe939ce581c0b78fdb27ef6f7 [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.hamcrest.core.IsEqual.equalTo;
import static org.junit.Assert.assertThat;
import java.util.List;
import org.junit.*;
import com.google.eclipse.protobuf.junit.core.XtextRule;
import com.google.eclipse.protobuf.protobuf.*;
import com.google.inject.Inject;
/**
* Tests for <code>{@link Protobufs#importsIn(Protobuf)}</code>.
*
* @author alruiz@google.com (Alex Ruiz)
*/
public class Protobufs_importsIn_Test {
@Rule public XtextRule xtext = overrideRuntimeModuleWith(unitTestModule());
@Inject private Protobufs protobufs;
// syntax = "proto2";
//
// import "luke.proto";
// import "leia.proto";
@Test public void should_return_all_imports() {
List<Import> allImports = protobufs.importsIn(xtext.root());
assertThat(allImports.size(), equalTo(2));
assertThat(allImports.get(0).getImportURI(), equalTo("luke.proto"));
assertThat(allImports.get(1).getImportURI(), equalTo("leia.proto"));
}
// syntax = "proto2";
//
// enum PhoneType {
// MOBILE = 0;
// HOME = 1;
// WORK = 2;
// }
@Test public void should_return_empty_if_no_imports_found() {
List<Import> allImports = protobufs.importsIn(xtext.root());
assertThat(allImports.size(), equalTo(0));
}
}