15
15
16
16
package software .amazon .awssdk .archtests ;
17
17
18
+ import static com .tngtech .archunit .lang .syntax .ArchRuleDefinition .classes ;
18
19
import static com .tngtech .archunit .lang .syntax .ArchRuleDefinition .methods ;
20
+ import static com .tngtech .archunit .lang .syntax .ArchRuleDefinition .noClasses ;
21
+ import static com .tngtech .archunit .lang .syntax .ArchRuleDefinition .noFields ;
22
+ import static com .tngtech .archunit .lang .syntax .ArchRuleDefinition .noMethods ;
19
23
import static com .tngtech .archunit .library .freeze .FreezingArchRule .freeze ;
20
24
21
25
import com .tngtech .archunit .core .domain .JavaClasses ;
22
26
import com .tngtech .archunit .core .domain .JavaMethod ;
27
+ import com .tngtech .archunit .core .domain .JavaModifier ;
23
28
import com .tngtech .archunit .core .importer .ClassFileImporter ;
24
29
import com .tngtech .archunit .core .importer .ImportOption ;
25
30
import com .tngtech .archunit .junit .ArchTest ;
26
31
import com .tngtech .archunit .lang .ArchCondition ;
27
32
import com .tngtech .archunit .lang .ArchRule ;
28
33
import com .tngtech .archunit .lang .ConditionEvents ;
29
34
import com .tngtech .archunit .lang .SimpleConditionEvent ;
35
+ import java .io .IOException ;
30
36
import java .util .Arrays ;
31
37
import java .util .HashSet ;
38
+ import java .util .Optional ;
32
39
import java .util .Set ;
40
+ import java .util .concurrent .Future ;
33
41
import java .util .regex .Pattern ;
34
42
import org .junit .jupiter .api .Test ;
43
+ import software .amazon .awssdk .annotations .SdkPublicApi ;
35
44
import software .amazon .awssdk .utils .Logger ;
36
45
37
46
/**
@@ -58,6 +67,67 @@ public class CodingConventionWithSuppressionTest {
58
67
*/
59
68
private static final Set <Pattern > ALLOWED_ERROR_LOG_SUPPRESSION = new HashSet <>();
60
69
70
+ @ Test
71
+ void publicApisShouldBeFinal () {
72
+ JavaClasses classes = new ClassFileImporter ()
73
+ .withImportOptions (Arrays .asList (new ImportOption .Predefined .DoNotIncludeTests ()))
74
+ .importPackages ("software.amazon.awssdk" );
75
+ freeze (classes ().that ().areAnnotatedWith (SdkPublicApi .class )
76
+ .and ().areNotInterfaces ()
77
+ .should ().haveModifier (JavaModifier .FINAL ))
78
+ .because ("public APIs SHOULD be final" )
79
+ .check (classes );
80
+ }
81
+
82
+ @ Test
83
+ void shouldNotUseFuture () {
84
+ JavaClasses classes = new ClassFileImporter ()
85
+ .withImportOptions (Arrays .asList (new ImportOption .Predefined .DoNotIncludeTests ()))
86
+ .importPackages ("software.amazon.awssdk" );
87
+ freeze (noClasses ().should ().dependOnClassesThat ().areAssignableFrom (Future .class )
88
+ .as ("use java.util.concurrent.Future" )
89
+ .because ("Future SHOULD NOT be used, use CompletableFuture instead" ))
90
+ .check (classes );
91
+ }
92
+
93
+ @ Test
94
+ void shouldNotUseOptionalForFields () {
95
+ JavaClasses classes = new ClassFileImporter ()
96
+ .withImportOptions (Arrays .asList (new ImportOption .Predefined .DoNotIncludeTests ()))
97
+ .importPackages ("software.amazon.awssdk" );
98
+ freeze (noFields ().should ().haveRawType (Optional .class )
99
+ .as ("use Optional for fields" )
100
+ .because ("Optional SHOULD NOT be used for method parameters. See "
101
+ + "https://github.com/aws/aws-sdk-java-v2/blob/master/docs"
102
+ + "/design/UseOfOptional.md" ))
103
+ .check (classes );
104
+ }
105
+
106
+ @ Test
107
+ void mustNotUseOptionalForMethodParam () {
108
+ JavaClasses classes = new ClassFileImporter ()
109
+ .withImportOptions (Arrays .asList (new ImportOption .Predefined .DoNotIncludeTests ()))
110
+ .importPackages ("software.amazon.awssdk" );
111
+ freeze (noMethods ().should ().haveRawParameterTypes (Optional .class )
112
+ .as ("use Optional for method parameters" )
113
+ .because ("Optional MUST NOT be used for method parameters. See "
114
+ + "https://github.com/aws/aws-sdk-java-v2/blob/master/docs/design/UseOfOptional.md" ))
115
+ .check (classes );
116
+ }
117
+
118
+ @ Test
119
+ void publicApisMustNotDeclareThrowableOfCheckedException () {
120
+ JavaClasses classes = new ClassFileImporter ()
121
+ .withImportOptions (Arrays .asList (new ImportOption .Predefined .DoNotIncludeTests ()))
122
+ .importPackages ("software.amazon.awssdk" );
123
+ freeze (noMethods ().that ()
124
+ .areDeclaredInClassesThat ().areAnnotatedWith (SdkPublicApi .class )
125
+ .should ()
126
+ .declareThrowableOfType (Exception .class ).orShould ().declareThrowableOfType (IOException .class )
127
+ .because ("public APIs MUST NOT throw checked exception" ))
128
+ .check (classes );
129
+ }
130
+
61
131
@ Test
62
132
void shouldNotAbuseWarnLog () {
63
133
JavaClasses classes = new ClassFileImporter ()
0 commit comments