Skip to content

Commit

Permalink
Merge branch 'main' into protoc_wrapper_argfile
Browse files Browse the repository at this point in the history
  • Loading branch information
UebelAndre authored Oct 12, 2023
2 parents ff9ec15 + 0a3bf9e commit 2cd1b74
Show file tree
Hide file tree
Showing 5 changed files with 63 additions and 2 deletions.
4 changes: 2 additions & 2 deletions proto/prost/private/protoc_wrapper.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use std::path::PathBuf;
use std::process;
use std::{env, fmt};

use heck::ToSnakeCase;
use heck::{ToSnakeCase, ToUpperCamelCase};
use prost::Message;
use prost_types::{
DescriptorProto, EnumDescriptorProto, FileDescriptorProto, FileDescriptorSet,
Expand Down Expand Up @@ -352,7 +352,7 @@ fn message_type_to_extern_paths(

extern_paths.insert(
proto_path.join(message_type_name),
rust_path.join(message_type_name),
rust_path.join(&message_type_name.to_upper_camel_case()),
);

let name_lower = message_type_name.to_lowercase();
Expand Down
37 changes: 37 additions & 0 deletions proto/prost/private/tests/camel_case/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
load("@rules_proto//proto:defs.bzl", "proto_library")
load("//proto/prost:defs.bzl", "rust_prost_library")
load("//rust:defs.bzl", "rust_test")

package(default_visibility = ["//proto/prost/private/tests:__subpackages__"])

proto_library(
name = "camel_case_proto",
srcs = [
"camel_case.proto",
],
strip_import_prefix = "/proto/prost/private/tests/camel_case",
)

proto_library(
name = "another_proto",
srcs = [
"another.proto",
],
deps = [
":camel_case_proto",
],
)

rust_prost_library(
name = "another_proto_rust",
proto = ":another_proto",
)

rust_test(
name = "camel_case_test",
srcs = ["camel_case_test.rs"],
edition = "2021",
deps = [
":another_proto_rust",
],
)
9 changes: 9 additions & 0 deletions proto/prost/private/tests/camel_case/another.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
syntax = "proto3";

package another;

import "camel_case.proto";

message Another {
camel_case.NameWithCAPS inner = 1;
}
7 changes: 7 additions & 0 deletions proto/prost/private/tests/camel_case/camel_case.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
syntax = "proto3";

package camel_case;

message NameWithCAPS {
string name = 1;
}
8 changes: 8 additions & 0 deletions proto/prost/private/tests/camel_case/camel_case_test.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
//! Tests that strange casings of message names are handled correctly.

use another_proto::another::Another;

#[test]
fn test_nested_messages() {
let _a = Another::default();
}

0 comments on commit 2cd1b74

Please sign in to comment.