unittest_deprecated.proto 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. // Protocol Buffers - Google's data interchange format
  2. // Copyright 2016 Google Inc. All rights reserved.
  3. //
  4. // Redistribution and use in source and binary forms, with or without
  5. // modification, are permitted provided that the following conditions are
  6. // met:
  7. //
  8. // * Redistributions of source code must retain the above copyright
  9. // notice, this list of conditions and the following disclaimer.
  10. // * Redistributions in binary form must reproduce the above
  11. // copyright notice, this list of conditions and the following disclaimer
  12. // in the documentation and/or other materials provided with the
  13. // distribution.
  14. // * Neither the name of Google Inc. nor the names of its
  15. // contributors may be used to endorse or promote products derived from
  16. // this software without specific prior written permission.
  17. //
  18. // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  19. // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  20. // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  21. // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  22. // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  23. // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  24. // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  25. // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  26. // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  27. // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  28. // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  29. syntax = "proto2";
  30. package protobuf_deprecated;
  31. option objc_class_prefix = "Dep";
  32. //
  33. // This file is like unittest_deprecated_file.proto, but uses message, enum,
  34. // enum value, and field level deprecation.
  35. //
  36. // The source generated from this file needs to be inspect to confirm it has
  37. // all of the expected annotations. It also will be compiled into the unittest
  38. // and that compile should be clean without errors.
  39. //
  40. // Mix of field types marked as deprecated.
  41. message Msg1 {
  42. extensions 100 to max;
  43. optional string string_field = 1 [deprecated=true];
  44. required int32 int_field = 2 [deprecated=true];
  45. repeated fixed32 fixed_field = 3 [deprecated=true];
  46. optional Msg1 msg_field = 4 [deprecated=true];
  47. }
  48. // Mix of extension field types marked as deprecated.
  49. extend Msg1 {
  50. optional string string_ext_field = 101 [deprecated=true];
  51. optional int32 int_ext_field = 102 [deprecated=true];
  52. repeated fixed32 fixed_ext_field = 103 [deprecated=true];
  53. optional Msg1 msg_ext_field = 104 [deprecated=true];
  54. }
  55. // Mix of extension field types (scoped to a message) marked as deprecated.
  56. message Msg1A {
  57. extend Msg1 {
  58. optional string string_ext2_field = 201 [deprecated=true];
  59. optional int32 int_ext2_field = 202 [deprecated=true];
  60. repeated fixed32 fixed_ext2_field = 203 [deprecated=true];
  61. optional Msg1 msg_ext2_field = 204 [deprecated=true];
  62. }
  63. }
  64. // Enum value marked as deprecated.
  65. enum Enum1 {
  66. ENUM1_ONE = 1;
  67. ENUM1_TWO = 2;
  68. ENUM1_THREE = 3 [deprecated=true];
  69. }
  70. // Message marked as deprecated.
  71. message Msg2 {
  72. option deprecated = true;
  73. optional string string_field = 1;
  74. required int32 int_field = 2;
  75. repeated fixed32 fixed_field = 3;
  76. }
  77. // Enum marked as deprecated.
  78. enum Enum2 {
  79. option deprecated = true;
  80. ENUM2_ONE = 1;
  81. ENUM2_TWO = 2;
  82. ENUM2_THREE = 3;
  83. }