blob: b0deef98ec03dad14de3ce019537b1b8950f9d3c [file] [log] [blame]
/*
* Copyright (c) 2014 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.bugs;
import static com.google.eclipse.protobuf.junit.core.UnitTestModule.unitTestModule;
import static com.google.eclipse.protobuf.junit.core.XtextRule.overrideRuntimeModuleWith;
import static org.junit.Assert.assertTrue;
import com.google.eclipse.protobuf.junit.core.XtextRule;
import com.google.eclipse.protobuf.validation.ProtobufJavaValidator;
import com.google.inject.Inject;
import org.eclipse.emf.common.util.BasicDiagnostic;
import org.junit.Rule;
import org.junit.Test;
/**
* Test that the parser correctly handles map syntax.
*/
public class MapSyntaxTest {
@Rule public XtextRule xtext = overrideRuntimeModuleWith(unitTestModule());
@Inject private ProtobufJavaValidator validator;
// syntax = "proto2";
//
// message Foo {
// optional map<string, Bar> bar_map = 1;
// }
@Test public void shouldAllowMapFields() {
boolean isValid = validator.validate(xtext.root(), new BasicDiagnostic(), null);
assertTrue(isValid);
}
// syntax = "proto2";
//
// message Foo {
// optional string map = 1;
// }
@Test public void shouldAllowFieldsNamedMap() {
boolean isValid = validator.validate(xtext.root(), new BasicDiagnostic(), null);
assertTrue(isValid);
}
}