Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
P
protobuf
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
protobuf
Commits
af13bff3
Commit
af13bff3
authored
Mar 03, 2017
by
Jie Luo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Detect if Descriptor.cs changes for csharp
parent
8610d0a9
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
145 additions
and
1 deletion
+145
-1
tests.cmake
cmake/tests.cmake
+1
-0
Makefile.am
src/Makefile.am
+1
-0
csharp_bootstrap_unittest.cc
...gle/protobuf/compiler/csharp/csharp_bootstrap_unittest.cc
+142
-0
csharp_generator.h
src/google/protobuf/compiler/csharp/csharp_generator.h
+1
-1
No files found.
cmake/tests.cmake
View file @
af13bff3
...
...
@@ -122,6 +122,7 @@ set(tests_files
${
protobuf_source_dir
}
/src/google/protobuf/compiler/cpp/cpp_plugin_unittest.cc
${
protobuf_source_dir
}
/src/google/protobuf/compiler/cpp/cpp_unittest.cc
${
protobuf_source_dir
}
/src/google/protobuf/compiler/cpp/metadata_test.cc
${
protobuf_source_dir
}
/src/google/protobuf/compiler/csharp/csharp_bootstrap_unittest.cc
${
protobuf_source_dir
}
/src/google/protobuf/compiler/csharp/csharp_generator_unittest.cc
${
protobuf_source_dir
}
/src/google/protobuf/compiler/importer_unittest.cc
${
protobuf_source_dir
}
/src/google/protobuf/compiler/java/java_doc_comment_unittest.cc
...
...
src/Makefile.am
View file @
af13bff3
...
...
@@ -783,6 +783,7 @@ protobuf_test_SOURCES = \
google/protobuf/compiler/objectivec/objectivec_helpers_unittest.cc
\
google/protobuf/compiler/python/python_plugin_unittest.cc
\
google/protobuf/compiler/ruby/ruby_generator_unittest.cc
\
google/protobuf/compiler/csharp/csharp_bootstrap_unittest.cc
\
google/protobuf/compiler/csharp/csharp_generator_unittest.cc
\
google/protobuf/util/field_comparator_test.cc
\
google/protobuf/util/field_mask_util_test.cc
\
...
...
src/google/protobuf/compiler/csharp/csharp_bootstrap_unittest.cc
0 → 100644
View file @
af13bff3
// Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc. All rights reserved.
// https://developers.google.com/protocol-buffers/
//
// 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.
// This test insures that
// csharp/src/Google.Protobuf/Reflection/Descriptor.cs match exactly
// what would be generated by the protocol compiler. The file is not
// generated automatically at build time.
//
// If this test fails, run the script
// "generate_descriptor_proto.sh" and add
// csharp/src/Google.Protobuf/Reflection/Descriptor.cs to your changelist.
#include <map>
#include <google/protobuf/compiler/csharp/csharp_generator.h>
#include <google/protobuf/compiler/importer.h>
#include <google/protobuf/descriptor.h>
#include <google/protobuf/io/zero_copy_stream_impl.h>
#include <google/protobuf/stubs/map_util.h>
#include <google/protobuf/stubs/stl_util.h>
#include <google/protobuf/stubs/strutil.h>
#include <google/protobuf/stubs/substitute.h>
#include <google/protobuf/testing/file.h>
#include <google/protobuf/testing/file.h>
#include <google/protobuf/testing/googletest.h>
#include <gtest/gtest.h>
namespace
google
{
namespace
protobuf
{
namespace
compiler
{
namespace
csharp
{
namespace
{
class
MockErrorCollector
:
public
MultiFileErrorCollector
{
public
:
MockErrorCollector
()
{}
~
MockErrorCollector
()
{}
string
text_
;
// implements ErrorCollector ---------------------------------------
void
AddError
(
const
string
&
filename
,
int
line
,
int
column
,
const
string
&
message
)
{
strings
::
SubstituteAndAppend
(
&
text_
,
"$0:$1:$2: $3
\n
"
,
filename
,
line
,
column
,
message
);
}
};
class
MockGeneratorContext
:
public
GeneratorContext
{
public
:
MockGeneratorContext
()
{}
~
MockGeneratorContext
()
{
STLDeleteValues
(
&
files_
);
}
void
ExpectFileMatches
(
const
string
&
virtual_filename
,
const
string
&
physical_filename
)
{
string
*
expected_contents
=
FindPtrOrNull
(
files_
,
virtual_filename
);
ASSERT_TRUE
(
expected_contents
!=
NULL
)
<<
"Generator failed to generate file: "
<<
virtual_filename
;
string
actual_contents
;
GOOGLE_CHECK_OK
(
File
::
GetContents
(
TestSourceDir
()
+
"/"
+
physical_filename
,
&
actual_contents
,
true
));
EXPECT_TRUE
(
actual_contents
==
*
expected_contents
)
<<
physical_filename
<<
" needs to be regenerated. Please run "
"generate_descriptor_proto.sh. Then add this file "
"to your CL."
;
}
// implements GeneratorContext --------------------------------------
virtual
io
::
ZeroCopyOutputStream
*
Open
(
const
string
&
filename
)
{
string
**
map_slot
=
&
files_
[
filename
];
delete
*
map_slot
;
*
map_slot
=
new
string
;
return
new
io
::
StringOutputStream
(
*
map_slot
);
}
private
:
std
::
map
<
string
,
string
*>
files_
;
};
TEST
(
CsharpBootstrapTest
,
GeneratedCsharpDescriptorMatches
)
{
MockErrorCollector
error_collector
;
DiskSourceTree
source_tree
;
source_tree
.
MapPath
(
""
,
TestSourceDir
());
Importer
importer
(
&
source_tree
,
&
error_collector
);
const
FileDescriptor
*
proto_file
=
importer
.
Import
(
"google/protobuf/descriptor.proto"
);
EXPECT_EQ
(
""
,
error_collector
.
text_
);
ASSERT_TRUE
(
proto_file
!=
NULL
);
Generator
generator
;
MockGeneratorContext
context
;
string
error
;
string
parameter
=
"base_namespace=Google.Protobuf"
;
ASSERT_TRUE
(
generator
.
Generate
(
proto_file
,
parameter
,
&
context
,
&
error
));
context
.
ExpectFileMatches
(
"Reflection/Descriptor.cs"
,
"../csharp/src/Google.Protobuf/Reflection/Descriptor.cs"
);
}
}
// namespace
}
// namespace csharp
}
// namespace compiler
}
// namespace protobuf
}
// namespace google
src/google/protobuf/compiler/csharp/csharp_generator.h
View file @
af13bff3
...
...
@@ -48,6 +48,7 @@ namespace csharp {
// CodeGenerator with the CommandLineInterface in your main() function.
class
LIBPROTOC_EXPORT
Generator
:
public
google
::
protobuf
::
compiler
::
CodeGenerator
{
public
:
virtual
bool
Generate
(
const
FileDescriptor
*
file
,
const
string
&
parameter
,
...
...
@@ -61,4 +62,3 @@ class LIBPROTOC_EXPORT Generator
}
// namespace google
#endif // GOOGLE_PROTOBUF_COMPILER_CSHARP_GENERATOR_H__
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment