-
Notifications
You must be signed in to change notification settings - Fork 152
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Special behavior for Temporal built-in prefixes (#2409)
- Loading branch information
1 parent
00f7dd0
commit c6e0306
Showing
17 changed files
with
562 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
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
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
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
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
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
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
82 changes: 82 additions & 0 deletions
82
temporal-sdk/src/test/java/io/temporal/workflow/WorkflowRestrictedNameTest.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,82 @@ | ||
/* | ||
* Copyright (C) 2022 Temporal Technologies, Inc. All Rights Reserved. | ||
* | ||
* Copyright (C) 2012-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* | ||
* Modifications copyright (C) 2017 Uber Technologies, Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this material except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://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 io.temporal.workflow; | ||
|
||
import io.temporal.testing.internal.SDKTestWorkflowRule; | ||
import org.junit.Assert; | ||
import org.junit.Rule; | ||
import org.junit.Test; | ||
|
||
public class WorkflowRestrictedNameTest { | ||
|
||
@Rule | ||
public SDKTestWorkflowRule testWorkflowRule = | ||
SDKTestWorkflowRule.newBuilder().setDoNotStart(true).build(); | ||
|
||
@Test | ||
public void testRegisteringRestrictedWorkflowMethod() { | ||
IllegalArgumentException e = | ||
Assert.assertThrows( | ||
IllegalArgumentException.class, | ||
() -> | ||
testWorkflowRule | ||
.getWorker() | ||
.registerWorkflowImplementationTypes(WorkflowMethodWithOverrideNameImpl.class)); | ||
Assert.assertEquals( | ||
"workflow name \"__temporal_workflow\" must not start with \"__temporal_\"", | ||
e.getMessage()); | ||
|
||
e = | ||
Assert.assertThrows( | ||
IllegalArgumentException.class, | ||
() -> | ||
testWorkflowRule | ||
.getWorker() | ||
.registerWorkflowImplementationTypes(WorkflowMethodRestrictedImpl.class)); | ||
Assert.assertEquals( | ||
"workflow name \"__temporal_workflow\" must not start with \"__temporal_\"", | ||
e.getMessage()); | ||
} | ||
|
||
@WorkflowInterface | ||
public interface WorkflowMethodWithOverrideNameRestricted { | ||
@WorkflowMethod(name = "__temporal_workflow") | ||
void workflowMethod(); | ||
} | ||
|
||
public static class WorkflowMethodWithOverrideNameImpl | ||
implements WorkflowMethodWithOverrideNameRestricted { | ||
|
||
@Override | ||
public void workflowMethod() {} | ||
} | ||
|
||
@WorkflowInterface | ||
public interface __temporal_workflow { | ||
@WorkflowMethod | ||
void workflowMethod(); | ||
} | ||
|
||
public static class WorkflowMethodRestrictedImpl implements __temporal_workflow { | ||
@Override | ||
public void workflowMethod() {} | ||
} | ||
} |
Oops, something went wrong.