-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create CelProtoMessageTypes for handling proto based types that requi…
…re a full protobuf dependency PiperOrigin-RevId: 720645313
- Loading branch information
1 parent
1ac9c4b
commit 9819ef3
Showing
6 changed files
with
90 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 32 additions & 0 deletions
32
common/src/main/java/dev/cel/common/types/CelProtoMessageTypes.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
// Copyright 2025 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// https://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package dev.cel.common.types; | ||
|
||
import dev.cel.expr.Type; | ||
import com.google.protobuf.Descriptors.Descriptor; | ||
|
||
/** | ||
* Utility class for working with {@link Type} that require a full protobuf dependency (i.e: | ||
* descriptors). | ||
*/ | ||
public final class CelProtoMessageTypes { | ||
|
||
/** Create a message {@code Type} for {@code Descriptor}. */ | ||
public static Type createMessage(Descriptor descriptor) { | ||
return CelProtoTypes.createMessage(descriptor.getFullName()); | ||
} | ||
|
||
private CelProtoMessageTypes() {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
common/src/test/java/dev/cel/common/types/CelProtoMessageTypesTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
// Copyright 2025 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// https://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package dev.cel.common.types; | ||
|
||
import static com.google.common.truth.Truth.assertThat; | ||
|
||
import dev.cel.expr.Type; | ||
import com.google.testing.junit.testparameterinjector.TestParameterInjector; | ||
import dev.cel.expr.conformance.proto3.TestAllTypes; | ||
import org.junit.Test; | ||
import org.junit.runner.RunWith; | ||
|
||
@RunWith(TestParameterInjector.class) | ||
public final class CelProtoMessageTypesTest { | ||
|
||
@Test | ||
public void createMessage_fromDescriptor() { | ||
Type type = CelProtoMessageTypes.createMessage(TestAllTypes.getDescriptor()); | ||
|
||
assertThat(type) | ||
.isEqualTo( | ||
Type.newBuilder().setMessageType(TestAllTypes.getDescriptor().getFullName()).build()); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters