aboutsummaryrefslogtreecommitdiff
path: root/csharp/src/ProtoGen.Test
diff options
context:
space:
mode:
Diffstat (limited to 'csharp/src/ProtoGen.Test')
-rw-r--r--csharp/src/ProtoGen.Test/DependencyResolutionTest.cs150
-rw-r--r--csharp/src/ProtoGen.Test/Properties/AssemblyInfo.cs30
-rw-r--r--csharp/src/ProtoGen.Test/ProtoGen.Test.csproj99
-rw-r--r--csharp/src/ProtoGen.Test/ProtocGenCsUnittests.cs683
-rw-r--r--csharp/src/ProtoGen.Test/TempFile.cs59
-rw-r--r--csharp/src/ProtoGen.Test/TestPreprocessing.cs733
-rw-r--r--csharp/src/ProtoGen.Test/protoc-gen-cs.Test.csproj101
7 files changed, 0 insertions, 1855 deletions
diff --git a/csharp/src/ProtoGen.Test/DependencyResolutionTest.cs b/csharp/src/ProtoGen.Test/DependencyResolutionTest.cs
deleted file mode 100644
index 47c6f1a1..00000000
--- a/csharp/src/ProtoGen.Test/DependencyResolutionTest.cs
+++ /dev/null
@@ -1,150 +0,0 @@
-#region Copyright notice and license
-
-// Protocol Buffers - Google's data interchange format
-// Copyright 2008 Google Inc. All rights reserved.
-// http://github.com/jskeet/dotnet-protobufs/
-// Original C++/Java/Python code:
-// http://code.google.com/p/protobuf/
-//
-// Redistribution and use in source and binary forms, with or without
-// modification, are permitted provided that the following conditions are
-// met:
-//
-// * Redistributions of source code must retain the above copyright
-// notice, this list of conditions and the following disclaimer.
-// * Redistributions in binary form must reproduce the above
-// copyright notice, this list of conditions and the following disclaimer
-// in the documentation and/or other materials provided with the
-// distribution.
-// * Neither the name of Google Inc. nor the names of its
-// contributors may be used to endorse or promote products derived from
-// this software without specific prior written permission.
-//
-// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-#endregion
-
-using System.Collections.Generic;
-using Google.ProtocolBuffers.DescriptorProtos;
-using Google.ProtocolBuffers.Descriptors;
-using NUnit.Framework;
-
-namespace Google.ProtocolBuffers.ProtoGen
-{
- /// <summary>
- /// Tests for the dependency resolution in Generator.
- /// </summary>
- [TestFixture]
- public class DependencyResolutionTest
- {
- [Test]
- public void TwoDistinctFiles()
- {
- FileDescriptorProto first = new FileDescriptorProto.Builder {Name = "First"}.Build();
- FileDescriptorProto second = new FileDescriptorProto.Builder {Name = "Second"}.Build();
- var set = new List<FileDescriptorProto> { first, second };
-
- IList<FileDescriptor> converted = Generator.ConvertDescriptors(CSharpFileOptions.DefaultInstance, set);
- Assert.AreEqual(2, converted.Count);
- Assert.AreEqual("First", converted[0].Name);
- Assert.AreEqual(0, converted[0].Dependencies.Count);
- Assert.AreEqual("Second", converted[1].Name);
- Assert.AreEqual(0, converted[1].Dependencies.Count);
- }
-
- [Test]
- public void FirstDependsOnSecond()
- {
- FileDescriptorProto first =
- new FileDescriptorProto.Builder {Name = "First", DependencyList = {"Second"}}.Build();
- FileDescriptorProto second = new FileDescriptorProto.Builder {Name = "Second"}.Build();
- var set = new List<FileDescriptorProto> { first, second };
- IList<FileDescriptor> converted = Generator.ConvertDescriptors(CSharpFileOptions.DefaultInstance, set);
- Assert.AreEqual(2, converted.Count);
- Assert.AreEqual("First", converted[0].Name);
- Assert.AreEqual(1, converted[0].Dependencies.Count);
- Assert.AreEqual(converted[1], converted[0].Dependencies[0]);
- Assert.AreEqual("Second", converted[1].Name);
- Assert.AreEqual(0, converted[1].Dependencies.Count);
- }
-
- [Test]
- public void SecondDependsOnFirst()
- {
- FileDescriptorProto first = new FileDescriptorProto.Builder {Name = "First"}.Build();
- FileDescriptorProto second =
- new FileDescriptorProto.Builder {Name = "Second", DependencyList = {"First"}}.Build();
- var set = new List<FileDescriptorProto> { first, second };
- IList<FileDescriptor> converted = Generator.ConvertDescriptors(CSharpFileOptions.DefaultInstance, set);
- Assert.AreEqual(2, converted.Count);
- Assert.AreEqual("First", converted[0].Name);
- Assert.AreEqual(0, converted[0].Dependencies.Count);
- Assert.AreEqual("Second", converted[1].Name);
- Assert.AreEqual(1, converted[1].Dependencies.Count);
- Assert.AreEqual(converted[0], converted[1].Dependencies[0]);
- }
-
- [Test]
- public void CircularDependency()
- {
- FileDescriptorProto first =
- new FileDescriptorProto.Builder {Name = "First", DependencyList = {"Second"}}.Build();
- FileDescriptorProto second =
- new FileDescriptorProto.Builder {Name = "Second", DependencyList = {"First"}}.Build();
- var set = new List<FileDescriptorProto> { first, second };
- try
- {
- Generator.ConvertDescriptors(CSharpFileOptions.DefaultInstance, set);
- Assert.Fail("Expected exception");
- }
- catch (DependencyResolutionException)
- {
- // Expected
- }
- }
-
- [Test]
- public void MissingDependency()
- {
- FileDescriptorProto first =
- new FileDescriptorProto.Builder {Name = "First", DependencyList = {"Second"}}.Build();
- var set = new List<FileDescriptorProto> { first };
- try
- {
- Generator.ConvertDescriptors(CSharpFileOptions.DefaultInstance, set);
- Assert.Fail("Expected exception");
- }
- catch (DependencyResolutionException)
- {
- // Expected
- }
- }
-
- [Test]
- public void SelfDependency()
- {
- FileDescriptorProto first =
- new FileDescriptorProto.Builder {Name = "First", DependencyList = {"First"}}.Build();
- var set = new List<FileDescriptorProto> { first };
- try
- {
- Generator.ConvertDescriptors(CSharpFileOptions.DefaultInstance, set);
- Assert.Fail("Expected exception");
- }
- catch (DependencyResolutionException)
- {
- // Expected
- }
- }
- }
-} \ No newline at end of file
diff --git a/csharp/src/ProtoGen.Test/Properties/AssemblyInfo.cs b/csharp/src/ProtoGen.Test/Properties/AssemblyInfo.cs
deleted file mode 100644
index 0b632bce..00000000
--- a/csharp/src/ProtoGen.Test/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,30 +0,0 @@
-using System.Reflection;
-using System.Runtime.CompilerServices;
-using System.Runtime.InteropServices;
-
-// General Information about an assembly is controlled through the following
-// set of attributes. Change these attribute values to modify the information
-// associated with an assembly.
-
-[assembly: AssemblyTitle("ProtoGen.Test")]
-[assembly: AssemblyDescription("")]
-[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("")]
-[assembly: AssemblyProduct("ProtoGen.Test")]
-[assembly: AssemblyCopyright("Copyright © 2008")]
-[assembly: AssemblyTrademark("")]
-[assembly: AssemblyCulture("")]
-
-// Version information for an assembly consists of the following four values:
-//
-// Major Version
-// Minor Version
-// Build Number
-// Revision
-//
-// You can specify all the values or you can default the Build and Revision Numbers
-// by using the '*' as shown below:
-// [assembly: AssemblyVersion("2.4.1.555")]
-
-[assembly: AssemblyVersion("2.4.1.555")]
-[assembly: AssemblyFileVersion("2.4.1.555")] \ No newline at end of file
diff --git a/csharp/src/ProtoGen.Test/ProtoGen.Test.csproj b/csharp/src/ProtoGen.Test/ProtoGen.Test.csproj
deleted file mode 100644
index 81f84796..00000000
--- a/csharp/src/ProtoGen.Test/ProtoGen.Test.csproj
+++ /dev/null
@@ -1,99 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <PropertyGroup>
- <EnvironmentFlavor>CLIENTPROFILE</EnvironmentFlavor>
- <EnvironmentTemplate>NET35</EnvironmentTemplate>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
- <ProductVersion>9.0.30729</ProductVersion>
- <SchemaVersion>2.0</SchemaVersion>
- <ProjectGuid>{C268DA4C-4004-47DA-AF23-44C983281A68}</ProjectGuid>
- <OutputType>Library</OutputType>
- <AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace>Google.ProtocolBuffers.ProtoGen</RootNamespace>
- <AssemblyName>Google.ProtocolBuffers.ProtoGen.Test</AssemblyName>
- <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
- <FileAlignment>512</FileAlignment>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>bin\NET35\Debug</OutputPath>
- <IntermediateOutputPath>obj\NET35\Debug\</IntermediateOutputPath>
- <DefineConstants>DEBUG;TRACE;$(EnvironmentFlavor);$(EnvironmentTemplate)</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
- <NoStdLib>true</NoStdLib>
- <GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <DebugType>pdbonly</DebugType>
- <Optimize>true</Optimize>
- <OutputPath>bin\NET35\Release</OutputPath>
- <IntermediateOutputPath>obj\NET35\Release\</IntermediateOutputPath>
- <DefineConstants>TRACE;$(EnvironmentFlavor);$(EnvironmentTemplate)</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
- <NoStdLib>true</NoStdLib>
- <GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
- </PropertyGroup>
- <ItemGroup>
- <Reference Include="nunit.framework">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\..\lib\NUnit\lib\nunit.framework.dll</HintPath>
- </Reference>
- <Reference Include="mscorlib" />
- <Reference Include="System" />
- <Reference Include="System.Data" />
- <Reference Include="System.Xml" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="DependencyResolutionTest.cs" />
- <Compile Include="Properties\AssemblyInfo.cs" />
- <Compile Include="TempFile.cs" />
- <Compile Include="TestPreprocessing.cs" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\ProtocolBuffers\ProtocolBuffers.csproj">
- <Project>{6908BDCE-D925-43F3-94AC-A531E6DF2591}</Project>
- <Name>ProtocolBuffers</Name>
- </ProjectReference>
- <ProjectReference Include="..\ProtoGen\ProtoGen.csproj">
- <Project>{250ADE34-82FD-4BAE-86D5-985FBE589C4A}</Project>
- <Name>ProtoGen</Name>
- </ProjectReference>
- </ItemGroup>
- <ItemGroup>
- <Content Include="..\..\lib\protoc.exe">
- <Link>protoc.exe</Link>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- </ItemGroup>
- <ItemGroup>
- <None Include="..\..\protos\google\protobuf\csharp_options.proto">
- <Link>google\protobuf\csharp_options.proto</Link>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- <None Include="..\..\protos\google\protobuf\descriptor.proto">
- <Link>google\protobuf\descriptor.proto</Link>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- </ItemGroup>
- <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
- <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
- Other similar extension points exist, see Microsoft.Common.targets.
- <Target Name="BeforeBuild">
- </Target>
- <Target Name="AfterBuild">
- </Target>
- -->
- <PropertyGroup>
- <StartAction>Program</StartAction>
- <StartProgram>$(ProjectDir)..\..\lib\NUnit\tools\nunit-console.exe</StartProgram>
- <StartArguments>/nologo /noshadow /labels /wait $(AssemblyName).dll</StartArguments>
- <StartWorkingDirectory>$(ProjectDir)$(OutputPath)</StartWorkingDirectory>
- </PropertyGroup>
-</Project> \ No newline at end of file
diff --git a/csharp/src/ProtoGen.Test/ProtocGenCsUnittests.cs b/csharp/src/ProtoGen.Test/ProtocGenCsUnittests.cs
deleted file mode 100644
index 8ee56de5..00000000
--- a/csharp/src/ProtoGen.Test/ProtocGenCsUnittests.cs
+++ /dev/null
@@ -1,683 +0,0 @@
-#region Copyright notice and license
-
-// Protocol Buffers - Google's data interchange format
-// Copyright 2008 Google Inc. All rights reserved.
-// http://github.com/jskeet/dotnet-protobufs/
-// Original C++/Java/Python code:
-// http://code.google.com/p/protobuf/
-//
-// Redistribution and use in source and binary forms, with or without
-// modification, are permitted provided that the following conditions are
-// met:
-//
-// * Redistributions of source code must retain the above copyright
-// notice, this list of conditions and the following disclaimer.
-// * Redistributions in binary form must reproduce the above
-// copyright notice, this list of conditions and the following disclaimer
-// in the documentation and/or other materials provided with the
-// distribution.
-// * Neither the name of Google Inc. nor the names of its
-// contributors may be used to endorse or promote products derived from
-// this software without specific prior written permission.
-//
-// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-#endregion
-
-using NUnit.Framework;
-using System;
-using System.Collections.Generic;
-using System.Diagnostics;
-using System.IO;
-using System.Reflection;
-using System.Text;
-
-namespace Google.ProtocolBuffers.ProtoGen
-{
- /// <summary>
- /// Tests protoc-gen-cs plugin.
- /// </summary>
- [TestFixture]
- [Category("Preprocessor")]
- public partial class ProtocGenCsUnittests
- {
- private static readonly string TempPath = Path.Combine(Path.GetTempPath(), "protoc-gen-cs.Test");
-
- private const string DefaultProto =
- @"
-package nunit.simple;
-// Test a very simple message.
-message MyMessage {
- optional string name = 1;
-}";
-
- #region TestFixture SetUp/TearDown
-
- private static readonly string OriginalWorkingDirectory = Environment.CurrentDirectory;
-
- private StringBuilder buffer = new StringBuilder();
-
- [TestFixtureSetUp]
- public virtual void Setup()
- {
- Teardown();
- Directory.CreateDirectory(TempPath);
- Environment.CurrentDirectory = TempPath;
- this.buffer.Length = 0;
- }
-
- [TestFixtureTearDown]
- public virtual void Teardown()
- {
- Environment.CurrentDirectory = OriginalWorkingDirectory;
- if (Directory.Exists(TempPath))
- {
- Directory.Delete(TempPath, true);
- }
- }
-
- #endregion
-
- #region Helper Methods RunProtoGen / RunCsc
-
- private void RunProtoc(int expect, string protoFile, params string[] args)
- {
- string protoPath = string.Format("-I. -I\"{0}\"", OriginalWorkingDirectory);
- string plugin = string.Format("--plugin=\"{0}\"", Path.Combine(OriginalWorkingDirectory, "protoc-gen-cs.exe"));
- string csOut = args.Length == 0 ? "--cs_out=." : string.Format("--cs_out=\"{0}:.\"", string.Join(" ", args));
- // Start the child process.
- Process p = new Process();
- // Redirect the output stream of the child process.
- p.StartInfo.CreateNoWindow = true;
- p.StartInfo.UseShellExecute = false;
- p.StartInfo.RedirectStandardError = true;
- p.StartInfo.RedirectStandardOutput = true;
- p.StartInfo.WorkingDirectory = TempPath;
- p.StartInfo.FileName = Path.Combine(OriginalWorkingDirectory, "protoc.exe");
- p.StartInfo.Arguments = string.Join(" ", new string[] { plugin, csOut, protoPath, protoFile });
- p.Start();
- // Read the output stream first and then wait.
- buffer.AppendLine(string.Format("{0}> \"{1}\" {2}", p.StartInfo.WorkingDirectory, p.StartInfo.FileName, p.StartInfo.Arguments));
- buffer.AppendLine(p.StandardError.ReadToEnd());
- buffer.AppendLine(p.StandardOutput.ReadToEnd());
- p.WaitForExit();
- Assert.AreEqual(expect, p.ExitCode, this.buffer.ToString());
- }
-
- private Assembly RunCsc(int expect, params string[] sources)
- {
- using (TempFile tempDll = new TempFile(String.Empty))
- {
- tempDll.ChangeExtension(".dll");
- List<string> args = new List<string>();
- args.Add("/nologo");
- args.Add("/target:library");
- args.Add("/debug-");
- args.Add(String.Format(@"""/out:{0}""", tempDll.TempPath));
- args.Add("/r:System.dll");
- args.Add(String.Format(@"""/r:{0}""",
- typeof(Google.ProtocolBuffers.DescriptorProtos.DescriptorProto).Assembly.
- Location));
- args.AddRange(sources);
-
- string exe = Path.Combine(System.Runtime.InteropServices.RuntimeEnvironment.GetRuntimeDirectory(),
- "csc.exe");
- ProcessStartInfo psi = new ProcessStartInfo(exe);
- psi.WorkingDirectory = TempPath;
- psi.CreateNoWindow = true;
- psi.UseShellExecute = false;
- psi.RedirectStandardOutput = true;
- psi.RedirectStandardError = true;
- psi.Arguments = string.Join(" ", args.ToArray());
- Process p = Process.Start(psi);
- buffer.AppendLine(string.Format("{0}> \"{1}\" {2}", p.StartInfo.WorkingDirectory, p.StartInfo.FileName, p.StartInfo.Arguments));
- buffer.AppendLine(p.StandardError.ReadToEnd());
- buffer.AppendLine(p.StandardOutput.ReadToEnd());
- p.WaitForExit();
- Assert.AreEqual(expect, p.ExitCode, this.buffer.ToString());
-
- Assembly asm = null;
- if (p.ExitCode == 0)
- {
- byte[] allbytes = File.ReadAllBytes(tempDll.TempPath);
- asm = Assembly.Load(allbytes);
-
- foreach (Type t in asm.GetTypes())
- {
- Debug.WriteLine(t.FullName, asm.FullName);
- }
- }
- return asm;
- }
- }
-
- #endregion
-
- // *******************************************************************
- // The following tests excercise options for protogen.exe
- // *******************************************************************
-
- [Test]
- public void TestProtoFile()
- {
- string test = new StackFrame(false).GetMethod().Name;
- Setup();
- using (TempFile source = TempFile.Attach(test + ".cs"))
- using (ProtoFile proto = new ProtoFile(test + ".proto", DefaultProto))
- {
- RunProtoc(0, proto.TempPath);
- Assembly a = RunCsc(0, source.TempPath);
- //assert that the message type is in the expected namespace
- Type t = a.GetType("nunit.simple.MyMessage", true, true);
- Assert.IsTrue(typeof(IMessage).IsAssignableFrom(t), "Expect an IMessage");
- //assert that we can find the static descriptor type
- a.GetType("nunit.simple." + test, true, true);
- }
- }
-
- [Test]
- public void TestProtoFileWithConflictingType()
- {
- string test = new StackFrame(false).GetMethod().Name;
- Setup();
- using (TempFile source = TempFile.Attach(test + ".cs"))
- using (
- ProtoFile proto = new ProtoFile(test + ".proto",
- @"
-package nunit.simple;
-// Test a very simple message.
-message " +
- test + @" {
- optional string name = 1;
-} "))
- {
- RunProtoc(0, proto.TempPath);
- Assembly a = RunCsc(0, source.TempPath);
- //assert that the message type is in the expected namespace
- Type t = a.GetType("nunit.simple." + test, true, true);
- Assert.IsTrue(typeof(IMessage).IsAssignableFrom(t), "Expect an IMessage");
- //assert that we can find the static descriptor type
- a.GetType("nunit.simple.Proto." + test, true, true);
- }
- }
-
- [Test]
- public void TestProtoFileWithNamespace()
- {
- string test = new StackFrame(false).GetMethod().Name;
- Setup();
- using (TempFile source = TempFile.Attach(test + ".cs"))
- using (ProtoFile proto = new ProtoFile(test + ".proto", DefaultProto))
- {
- RunProtoc(0, proto.TempPath, "-namespace=MyNewNamespace");
- Assembly a = RunCsc(0, source.TempPath);
- //assert that the message type is in the expected namespace
- Type t = a.GetType("MyNewNamespace.MyMessage", true, true);
- Assert.IsTrue(typeof(IMessage).IsAssignableFrom(t), "Expect an IMessage");
- //assert that we can find the static descriptor type
- a.GetType("MyNewNamespace." + test, true, true);
- }
- }
-
- [Test]
- public void TestProtoFileWithUmbrellaClassName()
- {
- string test = new StackFrame(false).GetMethod().Name;
- Setup();
- using (TempFile source = TempFile.Attach("MyUmbrellaClassname.cs"))
- using (ProtoFile proto = new ProtoFile(test + ".proto", DefaultProto))
- {
- RunProtoc(0, proto.TempPath, "/umbrella_classname=MyUmbrellaClassname");
- Assembly a = RunCsc(0, source.TempPath);
- //assert that the message type is in the expected namespace
- Type t = a.GetType("nunit.simple.MyMessage", true, true);
- Assert.IsTrue(typeof(IMessage).IsAssignableFrom(t), "Expect an IMessage");
- //assert that we can find the static descriptor type
- a.GetType("nunit.simple.MyUmbrellaClassname", true, true);
- }
- }
-
- [Test]
- public void TestProtoFileWithNestedClass()
- {
- string test = new StackFrame(false).GetMethod().Name;
- Setup();
- using (TempFile source = TempFile.Attach(test + ".cs"))
- using (ProtoFile proto = new ProtoFile(test + ".proto", DefaultProto))
- {
- RunProtoc(0, proto.TempPath, "-nest_classes=true");
- Assembly a = RunCsc(0, source.TempPath);
- //assert that the message type is in the expected namespace
- Type t = a.GetType("nunit.simple." + test + "+MyMessage", true, true);
- Assert.IsTrue(typeof(IMessage).IsAssignableFrom(t), "Expect an IMessage");
- //assert that we can find the static descriptor type
- a.GetType("nunit.simple." + test, true, true);
- }
- }
-
- [Test]
- public void TestProtoFileWithExpandedNsDirectories()
- {
- string test = new StackFrame(false).GetMethod().Name;
- Setup();
- using (TempFile source = TempFile.Attach(@"nunit\simple\" + test + ".cs"))
- using (ProtoFile proto = new ProtoFile(test + ".proto", DefaultProto))
- {
- RunProtoc(0, proto.TempPath, "-expand_namespace_directories=true");
- Assembly a = RunCsc(0, source.TempPath);
- //assert that the message type is in the expected namespace
- Type t = a.GetType("nunit.simple.MyMessage", true, true);
- Assert.IsTrue(typeof(IMessage).IsAssignableFrom(t), "Expect an IMessage");
- //assert that we can find the static descriptor type
- a.GetType("nunit.simple." + test, true, true);
- }
- }
-
- [Test]
- public void TestProtoFileWithNewExtension()
- {
- string test = new StackFrame(false).GetMethod().Name;
- Setup();
- using (TempFile source = TempFile.Attach(test + ".Generated.cs"))
- using (ProtoFile proto = new ProtoFile(test + ".proto", DefaultProto))
- {
- RunProtoc(0, proto.TempPath, "-file_extension=.Generated.cs");
- Assembly a = RunCsc(0, source.TempPath);
- //assert that the message type is in the expected namespace
- Type t = a.GetType("nunit.simple.MyMessage", true, true);
- Assert.IsTrue(typeof(IMessage).IsAssignableFrom(t), "Expect an IMessage");
- //assert that we can find the static descriptor type
- a.GetType("nunit.simple." + test, true, true);
- }
- }
-
- [Test]
- public void TestProtoFileWithUmbrellaNamespace()
- {
- string test = new StackFrame(false).GetMethod().Name;
- Setup();
- using (TempFile source = TempFile.Attach(test + ".cs"))
- using (ProtoFile proto = new ProtoFile(test + ".proto", DefaultProto))
- {
- RunProtoc(0, proto.TempPath, "-umbrella_namespace=MyUmbrella.Namespace");
- Assembly a = RunCsc(0, source.TempPath);
- //assert that the message type is in the expected namespace
- Type t = a.GetType("nunit.simple.MyMessage", true, true);
- Assert.IsTrue(typeof(IMessage).IsAssignableFrom(t), "Expect an IMessage");
- //assert that we can find the static descriptor type
- a.GetType("nunit.simple.MyUmbrella.Namespace." + test, true, true);
- }
- }
-
- [Test]
- public void TestProtoFileWithIgnoredUmbrellaNamespaceDueToNesting()
- {
- string test = new StackFrame(false).GetMethod().Name;
- Setup();
- using (TempFile source = TempFile.Attach(test + ".cs"))
- using (ProtoFile proto = new ProtoFile(test + ".proto", DefaultProto))
- {
- RunProtoc(0, proto.TempPath, "-nest_classes=true", "-umbrella_namespace=MyUmbrella.Namespace");
- Assembly a = RunCsc(0, source.TempPath);
- //assert that the message type is in the expected namespace
- Type t = a.GetType("nunit.simple." + test + "+MyMessage", true, true);
- Assert.IsTrue(typeof(IMessage).IsAssignableFrom(t), "Expect an IMessage");
- //assert that we can find the static descriptor type
- a.GetType("nunit.simple." + test, true, true);
- }
- }
-
- [Test]
- public void TestProtoFileWithExplicitEmptyUmbrellaNamespace()
- {
- string test = new StackFrame(false).GetMethod().Name;
- Setup();
- using (TempFile source = TempFile.Attach(test + ".cs"))
- using (
- ProtoFile proto = new ProtoFile(test + ".proto",
- @"
-package nunit.simple;
-// Test a very simple message.
-message " +
- test + @" {
- optional string name = 1;
-} "))
- {
- //Forces the umbrella class to not use a namespace even if a collision with a type is detected.
- RunProtoc(0, proto.TempPath, "-umbrella_namespace=");
- //error CS0441: 'nunit.simple.TestProtoFileWithExplicitEmptyUmbrellaNamespace': a class cannot be both static and sealed
- RunCsc(1, source.TempPath);
- }
- }
-
- [Test]
- public void TestProtoFileWithNewOutputFolder()
- {
- string test = new StackFrame(false).GetMethod().Name;
- Setup();
- using (TempFile source = TempFile.Attach(@"generated-code\" + test + ".cs"))
- using (ProtoFile proto = new ProtoFile(test + ".proto", DefaultProto))
- {
- RunProtoc(1, proto.TempPath, "-output_directory=generated-code");
- Directory.CreateDirectory("generated-code");
- RunProtoc(0, proto.TempPath, "-output_directory=generated-code");
- Assembly a = RunCsc(0, source.TempPath);
- //assert that the message type is in the expected namespace
- Type t = a.GetType("nunit.simple.MyMessage", true, true);
- Assert.IsTrue(typeof(IMessage).IsAssignableFrom(t), "Expect an IMessage");
- //assert that we can find the static descriptor type
- a.GetType("nunit.simple." + test, true, true);
- }
- }
-
- [Test]
- public void TestProtoFileAndIgnoreGoogleProtobuf()
- {
- string test = new StackFrame(false).GetMethod().Name;
- Setup();
- using (TempFile source = TempFile.Attach(test + ".cs"))
- using (
- ProtoFile proto = new ProtoFile(test + ".proto",
- @"
-import ""google/protobuf/csharp_options.proto"";
-option (google.protobuf.csharp_file_options).namespace = ""MyNewNamespace"";
-" +
- DefaultProto))
- {
- string google = Path.Combine(TempPath, "google\\protobuf");
- Directory.CreateDirectory(google);
- foreach (string file in Directory.GetFiles(Path.Combine(OriginalWorkingDirectory, "google\\protobuf")))
- {
- File.Copy(file, Path.Combine(google, Path.GetFileName(file)));
- }
-
- Assert.AreEqual(0, Directory.GetFiles(TempPath, "*.cs").Length);
- RunProtoc(0, proto.TempPath);
- Assert.AreEqual(1, Directory.GetFiles(TempPath, "*.cs").Length);
-
- Assembly a = RunCsc(0, source.TempPath);
- //assert that the message type is in the expected namespace
- Type t = a.GetType("MyNewNamespace.MyMessage", true, true);
- Assert.IsTrue(typeof(IMessage).IsAssignableFrom(t), "Expect an IMessage");
- //assert that we can find the static descriptor type
- a.GetType("MyNewNamespace." + test, true, true);
- }
- }
-
- [Test]
- public void TestProtoFileWithoutIgnoreGoogleProtobuf()
- {
- string test = new StackFrame(false).GetMethod().Name;
- Setup();
- using (TempFile source = TempFile.Attach(test + ".cs"))
- using (
- ProtoFile proto = new ProtoFile(test + ".proto",
- @"
-import ""google/protobuf/csharp_options.proto"";
-option (google.protobuf.csharp_file_options).namespace = ""MyNewNamespace"";
-" +
- DefaultProto))
- {
- string google = Path.Combine(TempPath, "google\\protobuf");
- Directory.CreateDirectory(google);
- foreach (string file in Directory.GetFiles(Path.Combine(OriginalWorkingDirectory, "google\\protobuf")))
- {
- File.Copy(file, Path.Combine(google, Path.GetFileName(file)));
- }
-
- Assert.AreEqual(0, Directory.GetFiles(TempPath, "*.cs").Length);
- //Without the option this fails due to being unable to resolve google/protobuf descriptors
- RunProtoc(0, proto.TempPath);
- }
- }
-
- // *******************************************************************
- // The following tests excercise options for protoc.exe
- // *******************************************************************
-
- [Test]
- public void TestProtoFileWithIncludeImports()
- {
- string test = new StackFrame(false).GetMethod().Name;
- Setup();
- using (TempFile source = TempFile.Attach(test + ".cs"))
- using (
- ProtoFile proto = new ProtoFile(test + ".proto",
- @"
-import ""google/protobuf/csharp_options.proto"";
-option (google.protobuf.csharp_file_options).namespace = ""MyNewNamespace"";
-
-package nunit.simple;
-// Test a very simple message.
-message MyMessage {
- optional string name = 1;
-} ")
- )
- {
- string google = Path.Combine(TempPath, "google\\protobuf");
- Directory.CreateDirectory(google);
- foreach (string file in Directory.GetFiles(Path.Combine(OriginalWorkingDirectory, "google\\protobuf")))
- {
- File.Copy(file, Path.Combine(google, Path.GetFileName(file)));
- }
-
- Assert.AreEqual(0, Directory.GetFiles(TempPath, "*.cs").Length);
- //if you specify the protoc option --include_imports this should build three source files
- RunProtoc(0, proto.TempPath);
- Assert.AreEqual(1, Directory.GetFiles(TempPath, "*.cs").Length);
-
- //you can (and should) simply omit the inclusion of the extra source files in your project
- Assembly a = RunCsc(0, source.TempPath);
- //assert that the message type is in the expected namespace
- Type t = a.GetType("MyNewNamespace.MyMessage", true, true);
- Assert.IsTrue(typeof(IMessage).IsAssignableFrom(t), "Expect an IMessage");
- //assert that we can find the static descriptor type
- a.GetType("MyNewNamespace." + test, true, true);
- }
- }
-
- //Seems the --proto_path or -I option is non-functional for me. Maybe others have luck?
- [Test]
- public void TestProtoFileInDifferentDirectory()
- {
- string test = new StackFrame(false).GetMethod().Name;
- Setup();
- using (TempFile source = TempFile.Attach(test + ".cs"))
- using (ProtoFile proto = new ProtoFile(test + ".proto", DefaultProto))
- {
- Environment.CurrentDirectory = OriginalWorkingDirectory;
- RunProtoc(0, proto.TempPath);
- Assembly a = RunCsc(0, source.TempPath);
- //assert that the message type is in the expected namespace
- Type t = a.GetType("nunit.simple.MyMessage", true, true);
- Assert.IsTrue(typeof(IMessage).IsAssignableFrom(t), "Expect an IMessage");
- //assert that we can find the static descriptor type
- a.GetType("nunit.simple." + test, true, true);
- }
- }
-
- // *******************************************************************
- // Handling of mutliple input files
- // *******************************************************************
-
- [Test]
- public void TestMultipleProtoFiles()
- {
- Setup();
- using (TempFile source1 = TempFile.Attach("MyMessage.cs"))
- using (
- ProtoFile proto1 = new ProtoFile("MyMessage.proto",
- @"
-package nunit.simple;
-// Test a very simple message.
-message MyMessage {
- optional string name = 1;
-}")
- )
- using (TempFile source2 = TempFile.Attach("MyMessageList.cs"))
- using (
- ProtoFile proto2 = new ProtoFile("MyMessageList.proto",
- @"
-package nunit.simple;
-import ""MyMessage.proto"";
-// Test a very simple message.
-message MyMessageList {
- repeated MyMessage messages = 1;
-}")
- )
- {
- RunProtoc(0, proto1.TempPath);
- RunProtoc(0, proto2.TempPath);
- Assembly a = RunCsc(0, source1.TempPath, source2.TempPath);
- //assert that the message type is in the expected namespace
- Type t1 = a.GetType("nunit.simple.MyMessage", true, true);
- Assert.IsTrue(typeof(IMessage).IsAssignableFrom(t1), "Expect an IMessage");
- //assert that the message type is in the expected namespace
- Type t2 = a.GetType("nunit.simple.MyMessageList", true, true);
- Assert.IsTrue(typeof(IMessage).IsAssignableFrom(t2), "Expect an IMessage");
- //assert that we can find the static descriptor type
- a.GetType("nunit.simple.Proto.MyMessage", true, true);
- a.GetType("nunit.simple.Proto.MyMessageList", true, true);
- }
- }
-
- [Test]
- public void TestOneProtoFileWithBufferFile()
- {
- Setup();
- using (TempFile source1 = TempFile.Attach("MyMessage.cs"))
- using (
- ProtoFile proto1 = new ProtoFile("MyMessage.proto",
- @"
-package nunit.simple;
-// Test a very simple message.
-message MyMessage {
- optional string name = 1;
-}")
- )
- using (TempFile source2 = TempFile.Attach("MyMessageList.cs"))
- using (
- ProtoFile proto2 = new ProtoFile("MyMessageList.proto",
- @"
-package nunit.simple;
-import ""MyMessage.proto"";
-// Test a very simple message.
-message MyMessageList {
- repeated MyMessage messages = 1;
-}")
- )
- {
- //build the proto buffer for MyMessage
- RunProtoc(0, proto1.TempPath);
- //build the MyMessageList proto-buffer and generate code by including MyMessage.pb
- RunProtoc(0, proto2.TempPath);
- Assembly a = RunCsc(0, source1.TempPath, source2.TempPath);
- //assert that the message type is in the expected namespace
- Type t1 = a.GetType("nunit.simple.MyMessage", true, true);
- Assert.IsTrue(typeof(IMessage).IsAssignableFrom(t1), "Expect an IMessage");
- //assert that the message type is in the expected namespace
- Type t2 = a.GetType("nunit.simple.MyMessageList", true, true);
- Assert.IsTrue(typeof(IMessage).IsAssignableFrom(t2), "Expect an IMessage");
- //assert that we can find the static descriptor type
- a.GetType("nunit.simple.Proto.MyMessage", true, true);
- a.GetType("nunit.simple.Proto.MyMessageList", true, true);
- }
- }
-
- [Test]
- public void TestProtoFileWithService()
- {
- string test = new StackFrame(false).GetMethod().Name;
- Setup();
- using (TempFile source = TempFile.Attach(test + ".cs"))
- using (ProtoFile proto = new ProtoFile(test + ".proto",
-@"
-import ""google/protobuf/csharp_options.proto"";
-option (google.protobuf.csharp_file_options).service_generator_type = GENERIC;
-
-package nunit.simple;
-// Test a very simple message.
-message MyMessage {
- optional string name = 1;
-}
-// test a very simple service.
-service TestService {
- rpc Execute (MyMessage) returns (MyMessage);
-}"))
- {
- CopyInGoogleProtoFiles();
-
- RunProtoc(0, proto.TempPath, "-nest_classes=false");
- Assert.AreEqual(1, Directory.GetFiles(TempPath, "*.cs").Length);
-
- Assembly a = RunCsc(0, source.TempPath);
- //assert that the service type is in the expected namespace
- Type t1 = a.GetType("nunit.simple.TestService", true, true);
- Assert.IsTrue(typeof(IService).IsAssignableFrom(t1), "Expect an IService");
- Assert.IsTrue(t1.IsAbstract, "Expect abstract class");
- //assert that the Stub subclass type is in the expected namespace
- Type t2 = a.GetType("nunit.simple.TestService+Stub", true, true);
- Assert.IsTrue(t1.IsAssignableFrom(t2), "Expect a sub of TestService");
- Assert.IsFalse(t2.IsAbstract, "Expect concrete class");
- }
- }
-
- [Test]
- public void TestProtoFileWithServiceInternal()
- {
- string test = new StackFrame(false).GetMethod().Name;
- Setup();
- using (TempFile source = TempFile.Attach(test + ".cs"))
- using (ProtoFile proto = new ProtoFile(test + ".proto",
-@"
-import ""google/protobuf/csharp_options.proto"";
-option (google.protobuf.csharp_file_options).service_generator_type = GENERIC;
-
-package nunit.simple;
-// Test a very simple message.
-message MyMessage {
- optional string name = 1;
-}
-// test a very simple service.
-service TestService {
- rpc Execute (MyMessage) returns (MyMessage);
-}"))
- {
- CopyInGoogleProtoFiles();
-
- RunProtoc(0, proto.TempPath, "-nest_classes=false", "-public_classes=false");
- Assert.AreEqual(1, Directory.GetFiles(TempPath, "*.cs").Length);
-
- Assembly a = RunCsc(0, source.TempPath);
- //assert that the service type is in the expected namespace
- Type t1 = a.GetType("nunit.simple.TestService", true, true);
- Assert.IsTrue(typeof(IService).IsAssignableFrom(t1), "Expect an IService");
- Assert.IsTrue(t1.IsAbstract, "Expect abstract class");
- //assert that the Stub subclass type is in the expected namespace
- Type t2 = a.GetType("nunit.simple.TestService+Stub", true, true);
- Assert.IsTrue(t1.IsAssignableFrom(t2), "Expect a sub of TestService");
- Assert.IsFalse(t2.IsAbstract, "Expect concrete class");
- }
- }
-
- private static void CopyInGoogleProtoFiles()
- {
- string google = Path.Combine(TempPath, "google\\protobuf");
- Directory.CreateDirectory(google);
- foreach (string file in Directory.GetFiles(Path.Combine(OriginalWorkingDirectory, "google\\protobuf")))
- {
- File.Copy(file, Path.Combine(google, Path.GetFileName(file)));
- }
- }
- }
-} \ No newline at end of file
diff --git a/csharp/src/ProtoGen.Test/TempFile.cs b/csharp/src/ProtoGen.Test/TempFile.cs
deleted file mode 100644
index 74a183f5..00000000
--- a/csharp/src/ProtoGen.Test/TempFile.cs
+++ /dev/null
@@ -1,59 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.IO;
-using System.Text;
-
-namespace Google.ProtocolBuffers.ProtoGen
-{
- internal class ProtoFile : TempFile
- {
- public ProtoFile(string filename, string contents)
- : base(filename, contents)
- {
- }
- }
-
- internal class TempFile : IDisposable
- {
- private string tempFile;
-
- public static TempFile Attach(string path)
- {
- return new TempFile(path, null);
- }
-
- protected TempFile(string filename, string contents)
- {
- tempFile = filename;
- if (contents != null)
- {
- File.WriteAllText(tempFile, contents, new UTF8Encoding(false));
- }
- }
-
- public TempFile(string contents)
- : this(Path.GetTempFileName(), contents)
- {
- }
-
- public string TempPath
- {
- get { return tempFile; }
- }
-
- public void ChangeExtension(string ext)
- {
- string newFile = Path.ChangeExtension(tempFile, ext);
- File.Move(tempFile, newFile);
- tempFile = newFile;
- }
-
- public void Dispose()
- {
- if (File.Exists(tempFile))
- {
- File.Delete(tempFile);
- }
- }
- }
-} \ No newline at end of file
diff --git a/csharp/src/ProtoGen.Test/TestPreprocessing.cs b/csharp/src/ProtoGen.Test/TestPreprocessing.cs
deleted file mode 100644
index 8b3b0663..00000000
--- a/csharp/src/ProtoGen.Test/TestPreprocessing.cs
+++ /dev/null
@@ -1,733 +0,0 @@
-#region Copyright notice and license
-
-// Protocol Buffers - Google's data interchange format
-// Copyright 2008 Google Inc. All rights reserved.
-// http://github.com/jskeet/dotnet-protobufs/
-// Original C++/Java/Python code:
-// http://code.google.com/p/protobuf/
-//
-// Redistribution and use in source and binary forms, with or without
-// modification, are permitted provided that the following conditions are
-// met:
-//
-// * Redistributions of source code must retain the above copyright
-// notice, this list of conditions and the following disclaimer.
-// * Redistributions in binary form must reproduce the above
-// copyright notice, this list of conditions and the following disclaimer
-// in the documentation and/or other materials provided with the
-// distribution.
-// * Neither the name of Google Inc. nor the names of its
-// contributors may be used to endorse or promote products derived from
-// this software without specific prior written permission.
-//
-// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-#endregion
-
-using System;
-using System.Collections.Generic;
-using System.Diagnostics;
-using System.IO;
-using System.Reflection;
-using NUnit.Framework;
-
-namespace Google.ProtocolBuffers.ProtoGen
-{
- [TestFixture]
- [Category("Preprocessor")]
- public partial class TestPreprocessing
- {
- private static readonly string TempPath = Path.Combine(Path.GetTempPath(), "proto-gen-test");
-
- private const string DefaultProto =
- @"
-package nunit.simple;
-// Test a very simple message.
-message MyMessage {
- optional string name = 1;
-}";
-
- #region TestFixture SetUp/TearDown
-
- private static readonly string OriginalWorkingDirectory = Environment.CurrentDirectory;
-
- [TestFixtureSetUp]
- public virtual void Setup()
- {
- Teardown();
- Directory.CreateDirectory(TempPath);
- Environment.CurrentDirectory = TempPath;
- }
-
- [TestFixtureTearDown]
- public virtual void Teardown()
- {
- Environment.CurrentDirectory = OriginalWorkingDirectory;
- if (Directory.Exists(TempPath))
- {
- Directory.Delete(TempPath, true);
- }
- }
-
- #endregion
-
- #region Helper Methods RunProtoGen / RunCsc
-
- private void RunProtoGen(int expect, params string[] args)
- {
- TextWriter tout = Console.Out, terr = Console.Error;
- StringWriter temp = new StringWriter();
- Console.SetOut(temp);
- Console.SetError(temp);
- try
- {
- Assert.AreEqual(expect, ProgramPreprocess.Run(args), "ProtoGen Failed: {0}", temp);
- }
- finally
- {
- Console.SetOut(tout);
- Console.SetError(terr);
- }
- }
-
- private Assembly RunCsc(int expect, params string[] sources)
- {
- using (TempFile tempDll = new TempFile(String.Empty))
- {
- tempDll.ChangeExtension(".dll");
- List<string> args = new List<string>();
- args.Add("/nologo");
- args.Add("/target:library");
- args.Add("/debug-");
- args.Add(String.Format(@"""/out:{0}""", tempDll.TempPath));
- args.Add("/r:System.dll");
- args.Add(String.Format(@"""/r:{0}""",
- typeof(Google.ProtocolBuffers.DescriptorProtos.DescriptorProto).Assembly.
- Location));
- args.AddRange(sources);
-
- string exe = Path.Combine(System.Runtime.InteropServices.RuntimeEnvironment.GetRuntimeDirectory(),
- "csc.exe");
- ProcessStartInfo psi = new ProcessStartInfo(exe);
- psi.CreateNoWindow = true;
- psi.UseShellExecute = false;
- psi.RedirectStandardOutput = true;
- psi.RedirectStandardError = true;
- psi.Arguments = string.Join(" ", args.ToArray());
- Process p = Process.Start(psi);
- p.WaitForExit();
- string errorText = p.StandardOutput.ReadToEnd() + p.StandardError.ReadToEnd();
- Assert.AreEqual(expect, p.ExitCode, "CSC.exe Failed: {0}", errorText);
-
- Assembly asm = null;
- if (p.ExitCode == 0)
- {
- byte[] allbytes = File.ReadAllBytes(tempDll.TempPath);
- asm = Assembly.Load(allbytes);
-
- foreach (Type t in asm.GetTypes())
- {
- Debug.WriteLine(t.FullName, asm.FullName);
- }
- }
- return asm;
- }
- }
-
- #endregion
-
- // *******************************************************************
- // The following tests excercise options for protogen.exe
- // *******************************************************************
-
- [Test]
- public void TestProtoFile()
- {
- string test = new StackFrame(false).GetMethod().Name;
- Setup();
- using (TempFile source = TempFile.Attach(test + ".cs"))
- using (ProtoFile proto = new ProtoFile(test + ".proto", DefaultProto))
- {
- RunProtoGen(0, proto.TempPath);
- Assembly a = RunCsc(0, source.TempPath);
- //assert that the message type is in the expected namespace
- Type t = a.GetType("nunit.simple.MyMessage", true, true);
- Assert.IsTrue(typeof(IMessage).IsAssignableFrom(t), "Expect an IMessage");
- //assert that we can find the static descriptor type
- a.GetType("nunit.simple." + test, true, true);
- }
- }
-
- [Test]
- public void TestProtoFileWithConflictingType()
- {
- string test = new StackFrame(false).GetMethod().Name;
- Setup();
- using (TempFile source = TempFile.Attach(test + ".cs"))
- using (
- ProtoFile proto = new ProtoFile(test + ".proto",
- @"
-package nunit.simple;
-// Test a very simple message.
-message " +
- test + @" {
- optional string name = 1;
-} "))
- {
- RunProtoGen(0, proto.TempPath);
- Assembly a = RunCsc(0, source.TempPath);
- //assert that the message type is in the expected namespace
- Type t = a.GetType("nunit.simple." + test, true, true);
- Assert.IsTrue(typeof(IMessage).IsAssignableFrom(t), "Expect an IMessage");
- //assert that we can find the static descriptor type
- a.GetType("nunit.simple.Proto." + test, true, true);
- }
- }
-
- [Test]
- public void TestProtoFileWithNamespace()
- {
- string test = new StackFrame(false).GetMethod().Name;
- Setup();
- using (TempFile source = TempFile.Attach(test + ".cs"))
- using (ProtoFile proto = new ProtoFile(test + ".proto", DefaultProto))
- {
- RunProtoGen(0, proto.TempPath, "-namespace:MyNewNamespace");
- Assembly a = RunCsc(0, source.TempPath);
- //assert that the message type is in the expected namespace
- Type t = a.GetType("MyNewNamespace.MyMessage", true, true);
- Assert.IsTrue(typeof(IMessage).IsAssignableFrom(t), "Expect an IMessage");
- //assert that we can find the static descriptor type
- a.GetType("MyNewNamespace." + test, true, true);
- }
- }
-
- [Test]
- public void TestProtoFileWithUmbrellaClassName()
- {
- string test = new StackFrame(false).GetMethod().Name;
- Setup();
- using (TempFile source = TempFile.Attach("MyUmbrellaClassname.cs"))
- using (ProtoFile proto = new ProtoFile(test + ".proto", DefaultProto))
- {
- RunProtoGen(0, proto.TempPath, "/umbrella_classname=MyUmbrellaClassname");
- Assembly a = RunCsc(0, source.TempPath);
- //assert that the message type is in the expected namespace
- Type t = a.GetType("nunit.simple.MyMessage", true, true);
- Assert.IsTrue(typeof(IMessage).IsAssignableFrom(t), "Expect an IMessage");
- //assert that we can find the static descriptor type
- a.GetType("nunit.simple.MyUmbrellaClassname", true, true);
- }
- }
-
- [Test]
- public void TestProtoFileWithNestedClass()
- {
- string test = new StackFrame(false).GetMethod().Name;
- Setup();
- using (TempFile source = TempFile.Attach(test + ".cs"))
- using (ProtoFile proto = new ProtoFile(test + ".proto", DefaultProto))
- {
- RunProtoGen(0, proto.TempPath, "-nest_classes:true");
- Assembly a = RunCsc(0, source.TempPath);
- //assert that the message type is in the expected namespace
- Type t = a.GetType("nunit.simple." + test + "+MyMessage", true, true);
- Assert.IsTrue(typeof(IMessage).IsAssignableFrom(t), "Expect an IMessage");
- //assert that we can find the static descriptor type
- a.GetType("nunit.simple." + test, true, true);
- }
- }
-
- [Test]
- public void TestProtoFileWithExpandedNsDirectories()
- {
- string test = new StackFrame(false).GetMethod().Name;
- Setup();
- using (TempFile source = TempFile.Attach(@"nunit\simple\" + test + ".cs"))
- using (ProtoFile proto = new ProtoFile(test + ".proto", DefaultProto))
- {
- RunProtoGen(0, proto.TempPath, "-expand_namespace_directories:true");
- Assembly a = RunCsc(0, source.TempPath);
- //assert that the message type is in the expected namespace
- Type t = a.GetType("nunit.simple.MyMessage", true, true);
- Assert.IsTrue(typeof(IMessage).IsAssignableFrom(t), "Expect an IMessage");
- //assert that we can find the static descriptor type
- a.GetType("nunit.simple." + test, true, true);
- }
- }
-
- [Test]
- public void TestProtoFileWithNewExtension()
- {
- string test = new StackFrame(false).GetMethod().Name;
- Setup();
- using (TempFile source = TempFile.Attach(test + ".Generated.cs"))
- using (ProtoFile proto = new ProtoFile(test + ".proto", DefaultProto))
- {
- RunProtoGen(0, proto.TempPath, "-file_extension:.Generated.cs");
- Assembly a = RunCsc(0, source.TempPath);
- //assert that the message type is in the expected namespace
- Type t = a.GetType("nunit.simple.MyMessage", true, true);
- Assert.IsTrue(typeof(IMessage).IsAssignableFrom(t), "Expect an IMessage");
- //assert that we can find the static descriptor type
- a.GetType("nunit.simple." + test, true, true);
- }
- }
-
- [Test]
- public void TestProtoFileWithUmbrellaNamespace()
- {
- string test = new StackFrame(false).GetMethod().Name;
- Setup();
- using (TempFile source = TempFile.Attach(test + ".cs"))
- using (ProtoFile proto = new ProtoFile(test + ".proto", DefaultProto))
- {
- RunProtoGen(0, proto.TempPath, "-umbrella_namespace:MyUmbrella.Namespace");
- Assembly a = RunCsc(0, source.TempPath);
- //assert that the message type is in the expected namespace
- Type t = a.GetType("nunit.simple.MyMessage", true, true);
- Assert.IsTrue(typeof(IMessage).IsAssignableFrom(t), "Expect an IMessage");
- //assert that we can find the static descriptor type
- a.GetType("nunit.simple.MyUmbrella.Namespace." + test, true, true);
- }
- }
-
- [Test]
- public void TestProtoFileWithIgnoredUmbrellaNamespaceDueToNesting()
- {
- string test = new StackFrame(false).GetMethod().Name;
- Setup();
- using (TempFile source = TempFile.Attach(test + ".cs"))
- using (ProtoFile proto = new ProtoFile(test + ".proto", DefaultProto))
- {
- RunProtoGen(0, proto.TempPath, "-nest_classes:true", "-umbrella_namespace:MyUmbrella.Namespace");
- Assembly a = RunCsc(0, source.TempPath);
- //assert that the message type is in the expected namespace
- Type t = a.GetType("nunit.simple." + test + "+MyMessage", true, true);
- Assert.IsTrue(typeof(IMessage).IsAssignableFrom(t), "Expect an IMessage");
- //assert that we can find the static descriptor type
- a.GetType("nunit.simple." + test, true, true);
- }
- }
-
- [Test]
- public void TestProtoFileWithExplicitEmptyUmbrellaNamespace()
- {
- string test = new StackFrame(false).GetMethod().Name;
- Setup();
- using (TempFile source = TempFile.Attach(test + ".cs"))
- using (
- ProtoFile proto = new ProtoFile(test + ".proto",
- @"
-package nunit.simple;
-// Test a very simple message.
-message " +
- test + @" {
- optional string name = 1;
-} "))
- {
- //Forces the umbrella class to not use a namespace even if a collision with a type is detected.
- RunProtoGen(0, proto.TempPath, "-umbrella_namespace:");
- //error CS0441: 'nunit.simple.TestProtoFileWithExplicitEmptyUmbrellaNamespace': a class cannot be both static and sealed
- RunCsc(1, source.TempPath);
- }
- }
-
- [Test]
- public void TestProtoFileWithNewOutputFolder()
- {
- string test = new StackFrame(false).GetMethod().Name;
- Setup();
- using (TempFile source = TempFile.Attach(@"generated-code\" + test + ".cs"))
- using (ProtoFile proto = new ProtoFile(test + ".proto", DefaultProto))
- {
- RunProtoGen(1, proto.TempPath, "-output_directory:generated-code");
- Directory.CreateDirectory("generated-code");
- RunProtoGen(0, proto.TempPath, "-output_directory:generated-code");
- Assembly a = RunCsc(0, source.TempPath);
- //assert that the message type is in the expected namespace
- Type t = a.GetType("nunit.simple.MyMessage", true, true);
- Assert.IsTrue(typeof(IMessage).IsAssignableFrom(t), "Expect an IMessage");
- //assert that we can find the static descriptor type
- a.GetType("nunit.simple." + test, true, true);
- }
- }
-
- [Test]
- public void TestProtoFileAndIgnoreGoogleProtobuf()
- {
- string test = new StackFrame(false).GetMethod().Name;
- Setup();
- using (TempFile source = TempFile.Attach(test + ".cs"))
- using (
- ProtoFile proto = new ProtoFile(test + ".proto",
- @"
-import ""google/protobuf/csharp_options.proto"";
-option (google.protobuf.csharp_file_options).namespace = ""MyNewNamespace"";
-" +
- DefaultProto))
- {
- string google = Path.Combine(TempPath, "google\\protobuf");
- Directory.CreateDirectory(google);
- foreach (string file in Directory.GetFiles(Path.Combine(OriginalWorkingDirectory, "google\\protobuf")))
- {
- File.Copy(file, Path.Combine(google, Path.GetFileName(file)));
- }
-
- Assert.AreEqual(0, Directory.GetFiles(TempPath, "*.cs").Length);
- RunProtoGen(0, proto.TempPath, "-ignore_google_protobuf:true");
- Assert.AreEqual(1, Directory.GetFiles(TempPath, "*.cs").Length);
-
- Assembly a = RunCsc(0, source.TempPath);
- //assert that the message type is in the expected namespace
- Type t = a.GetType("MyNewNamespace.MyMessage", true, true);
- Assert.IsTrue(typeof(IMessage).IsAssignableFrom(t), "Expect an IMessage");
- //assert that we can find the static descriptor type
- a.GetType("MyNewNamespace." + test, true, true);
- }
- }
-
- [Test]
- public void TestProtoFileWithoutIgnoreGoogleProtobuf()
- {
- string test = new StackFrame(false).GetMethod().Name;
- Setup();
- using (TempFile source = TempFile.Attach(test + ".cs"))
- using (
- ProtoFile proto = new ProtoFile(test + ".proto",
- @"
-import ""google/protobuf/csharp_options.proto"";
-option (google.protobuf.csharp_file_options).namespace = ""MyNewNamespace"";
-" +
- DefaultProto))
- {
- string google = Path.Combine(TempPath, "google\\protobuf");
- Directory.CreateDirectory(google);
- foreach (string file in Directory.GetFiles(Path.Combine(OriginalWorkingDirectory, "google\\protobuf")))
- {
- File.Copy(file, Path.Combine(google, Path.GetFileName(file)));
- }
-
- Assert.AreEqual(0, Directory.GetFiles(TempPath, "*.cs").Length);
- //Without the option this fails due to being unable to resolve google/protobuf descriptors
- RunProtoGen(1, proto.TempPath, "-ignore_google_protobuf:false");
- }
- }
-
- // *******************************************************************
- // The following tests excercise options for protoc.exe
- // *******************************************************************
-
- [Test]
- public void TestProtoFileWithIncludeImports()
- {
- string test = new StackFrame(false).GetMethod().Name;
- Setup();
- using (TempFile source = TempFile.Attach(test + ".cs"))
- using (
- ProtoFile proto = new ProtoFile(test + ".proto",
- @"
-import ""google/protobuf/csharp_options.proto"";
-option (google.protobuf.csharp_file_options).namespace = ""MyNewNamespace"";
-
-package nunit.simple;
-// Test a very simple message.
-message MyMessage {
- optional string name = 1;
-} ")
- )
- {
- string google = Path.Combine(TempPath, "google\\protobuf");
- Directory.CreateDirectory(google);
- foreach (string file in Directory.GetFiles(Path.Combine(OriginalWorkingDirectory, "google\\protobuf")))
- {
- File.Copy(file, Path.Combine(google, Path.GetFileName(file)));
- }
-
- Assert.AreEqual(0, Directory.GetFiles(TempPath, "*.cs").Length);
- //if you specify the protoc option --include_imports this should build three source files
- RunProtoGen(0, proto.TempPath, "--include_imports");
- Assert.AreEqual(3, Directory.GetFiles(TempPath, "*.cs").Length);
-
- //you can (and should) simply omit the inclusion of the extra source files in your project
- Assembly a = RunCsc(0, source.TempPath);
- //assert that the message type is in the expected namespace
- Type t = a.GetType("MyNewNamespace.MyMessage", true, true);
- Assert.IsTrue(typeof(IMessage).IsAssignableFrom(t), "Expect an IMessage");
- //assert that we can find the static descriptor type
- a.GetType("MyNewNamespace." + test, true, true);
- }
- }
-
- [Test]
- public void TestProtoFileWithIncludeImportsAndIgnoreGoogleProtobuf()
- {
- string test = new StackFrame(false).GetMethod().Name;
- Setup();
- using (TempFile source = TempFile.Attach(test + ".cs"))
- using (
- ProtoFile proto = new ProtoFile(test + ".proto",
- @"
-import ""google/protobuf/csharp_options.proto"";
-option (google.protobuf.csharp_file_options).namespace = ""MyNewNamespace"";
-
-package nunit.simple;
-// Test a very simple message.
-message MyMessage {
- optional string name = 1;
-} ")
- )
- {
- string google = Path.Combine(TempPath, "google\\protobuf");
- Directory.CreateDirectory(google);
- foreach (string file in Directory.GetFiles(Path.Combine(OriginalWorkingDirectory, "google\\protobuf")))
- File.Copy(file, Path.Combine(google, Path.GetFileName(file)));
-
- Assert.AreEqual(0, Directory.GetFiles(TempPath, "*.cs").Length);
- //Even with --include_imports, if you provide -ignore_google_protobuf:true you only get the one source file
- RunProtoGen(0, proto.TempPath, "-ignore_google_protobuf:true", "--include_imports");
- Assert.AreEqual(1, Directory.GetFiles(TempPath, "*.cs").Length);
-
- //you can (and should) simply omit the inclusion of the extra source files in your project
- Assembly a = RunCsc(0, source.TempPath);
- //assert that the message type is in the expected namespace
- Type t = a.GetType("MyNewNamespace.MyMessage", true, true);
- Assert.IsTrue(typeof(IMessage).IsAssignableFrom(t), "Expect an IMessage");
- //assert that we can find the static descriptor type
- a.GetType("MyNewNamespace." + test, true, true);
- }
- }
-
- [Test]
- public void TestProtoFileKeepingTheProtoBuffer()
- {
- string test = new StackFrame(false).GetMethod().Name;
- Setup();
- using (TempFile protobuf = TempFile.Attach(test + ".pb"))
- using (TempFile source = TempFile.Attach(test + ".cs"))
- using (
- ProtoFile proto = new ProtoFile(test + ".proto",
- @"
-package nunit.simple;
-// Test a very simple message.
-message MyMessage {
- optional string name = 1;
-} ")
- )
- {
- RunProtoGen(0, proto.TempPath, "--descriptor_set_out=" + protobuf.TempPath);
- Assert.IsTrue(File.Exists(protobuf.TempPath), "Missing: " + protobuf.TempPath);
- Assembly a = RunCsc(0, source.TempPath);
- //assert that the message type is in the expected namespace
- Type t = a.GetType("nunit.simple.MyMessage", true, true);
- Assert.IsTrue(typeof(IMessage).IsAssignableFrom(t), "Expect an IMessage");
- //assert that we can find the static descriptor type
- a.GetType("nunit.simple." + test, true, true);
- }
- }
-
- //Seems the --proto_path or -I option is non-functional for me. Maybe others have luck?
- [Test]
- public void TestProtoFileInDifferentDirectory()
- {
- string test = new StackFrame(false).GetMethod().Name;
- Setup();
- using (TempFile source = TempFile.Attach(test + ".cs"))
- using (ProtoFile proto = new ProtoFile(test + ".proto", DefaultProto))
- {
- Environment.CurrentDirectory = OriginalWorkingDirectory;
- RunProtoGen(0, proto.TempPath, "--proto_path=" + TempPath);
- Assembly a = RunCsc(0, source.TempPath);
- //assert that the message type is in the expected namespace
- Type t = a.GetType("nunit.simple.MyMessage", true, true);
- Assert.IsTrue(typeof(IMessage).IsAssignableFrom(t), "Expect an IMessage");
- //assert that we can find the static descriptor type
- a.GetType("nunit.simple." + test, true, true);
- }
- }
-
- // *******************************************************************
- // Handling of mutliple input files
- // *******************************************************************
-
- [Test]
- public void TestMultipleProtoFiles()
- {
- Setup();
- using (TempFile source1 = TempFile.Attach("MyMessage.cs"))
- using (
- ProtoFile proto1 = new ProtoFile("MyMessage.proto",
- @"
-package nunit.simple;
-// Test a very simple message.
-message MyMessage {
- optional string name = 1;
-}")
- )
- using (TempFile source2 = TempFile.Attach("MyMessageList.cs"))
- using (
- ProtoFile proto2 = new ProtoFile("MyMessageList.proto",
- @"
-package nunit.simple;
-import ""MyMessage.proto"";
-// Test a very simple message.
-message MyMessageList {
- repeated MyMessage messages = 1;
-}")
- )
- {
- RunProtoGen(0, proto1.TempPath, proto2.TempPath);
- Assembly a = RunCsc(0, source1.TempPath, source2.TempPath);
- //assert that the message type is in the expected namespace
- Type t1 = a.GetType("nunit.simple.MyMessage", true, true);
- Assert.IsTrue(typeof(IMessage).IsAssignableFrom(t1), "Expect an IMessage");
- //assert that the message type is in the expected namespace
- Type t2 = a.GetType("nunit.simple.MyMessageList", true, true);
- Assert.IsTrue(typeof(IMessage).IsAssignableFrom(t2), "Expect an IMessage");
- //assert that we can find the static descriptor type
- a.GetType("nunit.simple.Proto.MyMessage", true, true);
- a.GetType("nunit.simple.Proto.MyMessageList", true, true);
- }
- }
-
- [Test]
- public void TestOneProtoFileWithBufferFile()
- {
- Setup();
- using (TempFile source1 = TempFile.Attach("MyMessage.cs"))
- using (TempFile protobuf = TempFile.Attach("MyMessage.pb"))
- using (
- ProtoFile proto1 = new ProtoFile("MyMessage.proto",
- @"
-package nunit.simple;
-// Test a very simple message.
-message MyMessage {
- optional string name = 1;
-}")
- )
- using (TempFile source2 = TempFile.Attach("MyMessageList.cs"))
- using (
- ProtoFile proto2 = new ProtoFile("MyMessageList.proto",
- @"
-package nunit.simple;
-import ""MyMessage.proto"";
-// Test a very simple message.
-message MyMessageList {
- repeated MyMessage messages = 1;
-}")
- )
- {
- //build the proto buffer for MyMessage
- RunProtoGen(0, proto1.TempPath, "--descriptor_set_out=" + protobuf.TempPath);
- //build the MyMessageList proto-buffer and generate code by including MyMessage.pb
- RunProtoGen(0, proto2.TempPath, protobuf.TempPath);
- Assembly a = RunCsc(0, source1.TempPath, source2.TempPath);
- //assert that the message type is in the expected namespace
- Type t1 = a.GetType("nunit.simple.MyMessage", true, true);
- Assert.IsTrue(typeof(IMessage).IsAssignableFrom(t1), "Expect an IMessage");
- //assert that the message type is in the expected namespace
- Type t2 = a.GetType("nunit.simple.MyMessageList", true, true);
- Assert.IsTrue(typeof(IMessage).IsAssignableFrom(t2), "Expect an IMessage");
- //assert that we can find the static descriptor type
- a.GetType("nunit.simple.Proto.MyMessage", true, true);
- a.GetType("nunit.simple.Proto.MyMessageList", true, true);
- }
- }
-
- [Test]
- public void TestProtoFileWithService()
- {
- string test = new StackFrame(false).GetMethod().Name;
- Setup();
- using (TempFile source = TempFile.Attach(test + ".cs"))
- using (ProtoFile proto = new ProtoFile(test + ".proto",
-@"
-import ""google/protobuf/csharp_options.proto"";
-option (google.protobuf.csharp_file_options).service_generator_type = GENERIC;
-
-package nunit.simple;
-// Test a very simple message.
-message MyMessage {
- optional string name = 1;
-}
-// test a very simple service.
-service TestService {
- rpc Execute (MyMessage) returns (MyMessage);
-}"))
- {
- CopyInGoogleProtoFiles();
-
- RunProtoGen(0, proto.TempPath, "-ignore_google_protobuf:true", "-nest_classes=false");
- Assert.AreEqual(1, Directory.GetFiles(TempPath, "*.cs").Length);
-
- Assembly a = RunCsc(0, source.TempPath);
- //assert that the service type is in the expected namespace
- Type t1 = a.GetType("nunit.simple.TestService", true, true);
- Assert.IsTrue(typeof(IService).IsAssignableFrom(t1), "Expect an IService");
- Assert.IsTrue(t1.IsAbstract, "Expect abstract class");
- //assert that the Stub subclass type is in the expected namespace
- Type t2 = a.GetType("nunit.simple.TestService+Stub", true, true);
- Assert.IsTrue(t1.IsAssignableFrom(t2), "Expect a sub of TestService");
- Assert.IsFalse(t2.IsAbstract, "Expect concrete class");
- }
- }
-
- [Test]
- public void TestProtoFileWithServiceInternal()
- {
- string test = new StackFrame(false).GetMethod().Name;
- Setup();
- using (TempFile source = TempFile.Attach(test + ".cs"))
- using (ProtoFile proto = new ProtoFile(test + ".proto",
-@"
-import ""google/protobuf/csharp_options.proto"";
-option (google.protobuf.csharp_file_options).service_generator_type = GENERIC;
-
-package nunit.simple;
-// Test a very simple message.
-message MyMessage {
- optional string name = 1;
-}
-// test a very simple service.
-service TestService {
- rpc Execute (MyMessage) returns (MyMessage);
-}"))
- {
- CopyInGoogleProtoFiles();
-
- RunProtoGen(0, proto.TempPath, "-ignore_google_protobuf:true", "-nest_classes=false", "-public_classes=false");
- Assert.AreEqual(1, Directory.GetFiles(TempPath, "*.cs").Length);
-
- Assembly a = RunCsc(0, source.TempPath);
- //assert that the service type is in the expected namespace
- Type t1 = a.GetType("nunit.simple.TestService", true, true);
- Assert.IsTrue(typeof(IService).IsAssignableFrom(t1), "Expect an IService");
- Assert.IsTrue(t1.IsAbstract, "Expect abstract class");
- //assert that the Stub subclass type is in the expected namespace
- Type t2 = a.GetType("nunit.simple.TestService+Stub", true, true);
- Assert.IsTrue(t1.IsAssignableFrom(t2), "Expect a sub of TestService");
- Assert.IsFalse(t2.IsAbstract, "Expect concrete class");
- }
- }
-
- private static void CopyInGoogleProtoFiles()
- {
- string google = Path.Combine(TempPath, "google\\protobuf");
- Directory.CreateDirectory(google);
- foreach (string file in Directory.GetFiles(Path.Combine(OriginalWorkingDirectory, "google\\protobuf")))
- {
- File.Copy(file, Path.Combine(google, Path.GetFileName(file)));
- }
- }
- }
-} \ No newline at end of file
diff --git a/csharp/src/ProtoGen.Test/protoc-gen-cs.Test.csproj b/csharp/src/ProtoGen.Test/protoc-gen-cs.Test.csproj
deleted file mode 100644
index 2e816115..00000000
--- a/csharp/src/ProtoGen.Test/protoc-gen-cs.Test.csproj
+++ /dev/null
@@ -1,101 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <PropertyGroup>
- <EnvironmentFlavor>CLIENTPROFILE</EnvironmentFlavor>
- <EnvironmentTemplate>NET35</EnvironmentTemplate>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
- <ProductVersion>9.0.30729</ProductVersion>
- <SchemaVersion>2.0</SchemaVersion>
- <ProjectGuid>{C1024C9C-8176-48C3-B547-B9F6DF6B80A6}</ProjectGuid>
- <OutputType>Library</OutputType>
- <AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace>Google.ProtocolBuffers.ProtoGen</RootNamespace>
- <AssemblyName>protoc-gen-cs.Test</AssemblyName>
- <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
- <FileAlignment>512</FileAlignment>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>bin\NET35\Debug</OutputPath>
- <IntermediateOutputPath>obj\NET35\Debug\</IntermediateOutputPath>
- <DefineConstants>DEBUG;TRACE;$(EnvironmentFlavor);$(EnvironmentTemplate)</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
- <NoStdLib>true</NoStdLib>
- <GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <DebugType>pdbonly</DebugType>
- <Optimize>true</Optimize>
- <OutputPath>bin\NET35\Release</OutputPath>
- <IntermediateOutputPath>obj\NET35\Release\</IntermediateOutputPath>
- <DefineConstants>TRACE;$(EnvironmentFlavor);$(EnvironmentTemplate)</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
- <NoStdLib>true</NoStdLib>
- <GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
- </PropertyGroup>
- <ItemGroup>
- <Reference Include="nunit.framework">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\..\lib\NUnit\lib\nunit.framework.dll</HintPath>
- </Reference>
- <Reference Include="mscorlib" />
- <Reference Include="System" />
- <Reference Include="System.Data" />
- <Reference Include="System.Xml" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="ProtocGenCsUnittests.cs" />
- <Compile Include="Properties\AssemblyInfo.cs" />
- <Compile Include="TempFile.cs" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\ProtocolBuffers\ProtocolBuffers.csproj">
- <Project>{6908bdce-d925-43f3-94ac-a531e6df2591}</Project>
- <Name>ProtocolBuffers</Name>
- </ProjectReference>
- <ProjectReference Include="..\ProtoGen\protoc-gen-cs.csproj">
- <Project>{250ade34-82fd-4bae-86d5-985fbe589c4b}</Project>
- <Name>protoc-gen-cs</Name>
- </ProjectReference>
- </ItemGroup>
- <ItemGroup>
- <Content Include="..\..\lib\protoc.exe">
- <Link>protoc.exe</Link>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- </ItemGroup>
- <ItemGroup>
- <None Include="..\..\protos\google\protobuf\csharp_options.proto">
- <Link>google\protobuf\csharp_options.proto</Link>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- <None Include="..\..\protos\google\protobuf\descriptor.proto">
- <Link>google\protobuf\descriptor.proto</Link>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- </ItemGroup>
- <ItemGroup>
- <Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
- </ItemGroup>
- <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
- <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
- Other similar extension points exist, see Microsoft.Common.targets.
- <Target Name="BeforeBuild">
- </Target>
- <Target Name="AfterBuild">
- </Target>
- -->
- <PropertyGroup>
- <StartAction>Program</StartAction>
- <StartProgram>$(ProjectDir)..\..\lib\NUnit\tools\nunit-console.exe</StartProgram>
- <StartArguments>/nologo /noshadow /labels /wait $(AssemblyName).dll</StartArguments>
- <StartWorkingDirectory>$(ProjectDir)$(OutputPath)</StartWorkingDirectory>
- </PropertyGroup>
-</Project> \ No newline at end of file