summaryrefslogtreecommitdiffstats
path: root/tests/inputs/service
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-07-29 09:40:12 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-07-29 09:40:12 +0000
commit14b40ec77a4bf8605789cc3aff0eb87625510a41 (patch)
tree4064d27144d6deaabfcd96df01bd996baa8b51a0 /tests/inputs/service
parentInitial commit. (diff)
downloadpython-aristaproto-upstream.tar.xz
python-aristaproto-upstream.zip
Adding upstream version 1.2+20240521.upstream/1.2+20240521upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r--tests/inputs/service/service.proto35
-rw-r--r--tests/inputs/service_separate_packages/messages.proto31
-rw-r--r--tests/inputs/service_separate_packages/service.proto12
-rw-r--r--tests/inputs/service_uppercase/service.proto16
-rw-r--r--tests/inputs/service_uppercase/test_service.py8
5 files changed, 102 insertions, 0 deletions
diff --git a/tests/inputs/service/service.proto b/tests/inputs/service/service.proto
new file mode 100644
index 0000000..53d84fb
--- /dev/null
+++ b/tests/inputs/service/service.proto
@@ -0,0 +1,35 @@
+syntax = "proto3";
+
+package service;
+
+enum ThingType {
+ UNKNOWN = 0;
+ LIVING = 1;
+ DEAD = 2;
+}
+
+message DoThingRequest {
+ string name = 1;
+ repeated string comments = 2;
+ ThingType type = 3;
+}
+
+message DoThingResponse {
+ repeated string names = 1;
+}
+
+message GetThingRequest {
+ string name = 1;
+}
+
+message GetThingResponse {
+ string name = 1;
+ int32 version = 2;
+}
+
+service Test {
+ rpc DoThing (DoThingRequest) returns (DoThingResponse);
+ rpc DoManyThings (stream DoThingRequest) returns (DoThingResponse);
+ rpc GetThingVersions (GetThingRequest) returns (stream GetThingResponse);
+ rpc GetDifferentThings (stream GetThingRequest) returns (stream GetThingResponse);
+}
diff --git a/tests/inputs/service_separate_packages/messages.proto b/tests/inputs/service_separate_packages/messages.proto
new file mode 100644
index 0000000..270b188
--- /dev/null
+++ b/tests/inputs/service_separate_packages/messages.proto
@@ -0,0 +1,31 @@
+syntax = "proto3";
+
+import "google/protobuf/duration.proto";
+import "google/protobuf/timestamp.proto";
+
+package service_separate_packages.things.messages;
+
+message DoThingRequest {
+ string name = 1;
+
+ // use `repeated` so we can check if `List` is correctly imported
+ repeated string comments = 2;
+
+ // use google types `timestamp` and `duration` so we can check
+ // if everything from `datetime` is correctly imported
+ google.protobuf.Timestamp when = 3;
+ google.protobuf.Duration duration = 4;
+}
+
+message DoThingResponse {
+ repeated string names = 1;
+}
+
+message GetThingRequest {
+ string name = 1;
+}
+
+message GetThingResponse {
+ string name = 1;
+ int32 version = 2;
+}
diff --git a/tests/inputs/service_separate_packages/service.proto b/tests/inputs/service_separate_packages/service.proto
new file mode 100644
index 0000000..950eab4
--- /dev/null
+++ b/tests/inputs/service_separate_packages/service.proto
@@ -0,0 +1,12 @@
+syntax = "proto3";
+
+import "messages.proto";
+
+package service_separate_packages.things.service;
+
+service Test {
+ rpc DoThing (things.messages.DoThingRequest) returns (things.messages.DoThingResponse);
+ rpc DoManyThings (stream things.messages.DoThingRequest) returns (things.messages.DoThingResponse);
+ rpc GetThingVersions (things.messages.GetThingRequest) returns (stream things.messages.GetThingResponse);
+ rpc GetDifferentThings (stream things.messages.GetThingRequest) returns (stream things.messages.GetThingResponse);
+}
diff --git a/tests/inputs/service_uppercase/service.proto b/tests/inputs/service_uppercase/service.proto
new file mode 100644
index 0000000..786eec2
--- /dev/null
+++ b/tests/inputs/service_uppercase/service.proto
@@ -0,0 +1,16 @@
+syntax = "proto3";
+
+package service_uppercase;
+
+message DoTHINGRequest {
+ string name = 1;
+ repeated string comments = 2;
+}
+
+message DoTHINGResponse {
+ repeated string names = 1;
+}
+
+service Test {
+ rpc DoThing (DoTHINGRequest) returns (DoTHINGResponse);
+}
diff --git a/tests/inputs/service_uppercase/test_service.py b/tests/inputs/service_uppercase/test_service.py
new file mode 100644
index 0000000..d10fccf
--- /dev/null
+++ b/tests/inputs/service_uppercase/test_service.py
@@ -0,0 +1,8 @@
+import inspect
+
+from tests.output_aristaproto.service_uppercase import TestStub
+
+
+def test_parameters():
+ sig = inspect.signature(TestStub.do_thing)
+ assert len(sig.parameters) == 5, "Expected 5 parameters"