Skip to content

Commit 848b174

Browse files
dhruvsonagaraDhruv Sonagara
and
Dhruv Sonagara
authored
PHEE-419 Add errorprone configuration and resolve errors manually (#135)
* Added errorprone cofiguration * Resolved errorprone issues manually * updated the request template spell * testing the CI failure changes * new changes * Added the ngrok setup in workflow of GOV test cases * Added Ngrok part in ams integration test workflow and steps * Removed unnescessary line * Updated the indentation for the ams tests * added web addr and authtoken step in ams test * Updated the path for ams tests --------- Co-authored-by: Dhruv Sonagara <[email protected]>
1 parent a10de36 commit 848b174

File tree

8 files changed

+147
-16
lines changed

8 files changed

+147
-16
lines changed

.circleci/config.yml

+29-2
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ jobs:
195195
export CALLBACK_URL="https://$NGROK_PUBLIC_URL"
196196
echo -n "Public url ."
197197
echo $CALLBACK_URL
198-
./gradlew test -Dcucumber.filter.tags="@gov"
198+
cd ph-ee-integration-test && ./gradlew test -Dcucumber.filter.tags="@gov"
199199
echo -n "Test execution is completed, kill ngrok"
200200
pkill ngrok
201201
- store_test_results:
@@ -207,7 +207,32 @@ jobs:
207207
- image: cimg/openjdk:17.0.0
208208
steps:
209209
- run: git clone https://github.com/openmf/ph-ee-integration-test
210-
- run: cd ph-ee-integration-test && ./gradlew test -Dcucumber.filter.tags="@amsIntegration"
210+
- run:
211+
name: Ngrok setup
212+
command: curl -s https://ngrok-agent.s3.amazonaws.com/ngrok.asc | sudo tee /etc/apt/trusted.gpg.d/ngrok.asc >/dev/null && echo "deb https://ngrok-agent.s3.amazonaws.com buster main" | sudo tee /etc/apt/sources.list.d/ngrok.list && sudo apt update && sudo apt install ngrok
213+
- run:
214+
name: Test execution
215+
command: |
216+
ngrok config add-authtoken $AUTH_TOKEN
217+
echo "web_addr: $LOCAL_PORT" >> /home/circleci/.config/ngrok/ngrok.yml
218+
ngrok http 53013 > /dev/null &
219+
echo -n "Extracting ngrok public url ."
220+
NGROK_PUBLIC_URL=""
221+
while [ -z "$NGROK_PUBLIC_URL" ]; do
222+
# Run 'curl' against ngrok API and extract public (using 'sed' command)
223+
export NGROK_PUBLIC_URL=$(curl --silent --max-time 10 --connect-timeout 5 \
224+
--show-error http://127.0.0.1:$LOCAL_PORT/api/tunnels | \
225+
sed -nE 's/.*public_url":"https:..([^"]*).*/\1/p')
226+
sleep 1
227+
echo -n "."
228+
done
229+
230+
export CALLBACK_URL="https://$NGROK_PUBLIC_URL"
231+
echo -n "Public url ."
232+
echo $CALLBACK_URL
233+
cd ph-ee-integration-test && ./gradlew test -Dcucumber.filter.tags="@amsIntegration"
234+
echo -n "Test execution is completed, kill ngrok"
235+
pkill ngrok
211236
- store_test_results:
212237
path: ph-ee-integration-test/build/cucumber.xml
213238
- store_artifacts:
@@ -261,10 +286,12 @@ workflows:
261286
- AWS
262287
- Helm
263288
- slack
289+
- Ngrok
264290
- test-chart-ams:
265291
requires:
266292
- upgrade-helm-chart
267293
context:
268294
- AWS
269295
- Helm
270296
- slack
297+
- Ngrok

.github/pull_request_template.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## Description
22

33
* Describe the changes made and why they were made.
4-
* Add a link to teh design document or include the design bullet points related to this PR here.
4+
* Add a link to the design document or include the design bullet points related to this PR here.
55

66
_(Ignore if these details are present on the associated JIRA ticket)_
77

build.gradle

+101
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ plugins {
99
id 'checkstyle'
1010
id 'org.springframework.boot' version '2.6.2'
1111
id 'com.diffplug.spotless' version '6.19.0'
12+
id 'net.ltgt.errorprone' version '3.1.0'
1213
}
1314

1415
repositories {
@@ -93,6 +94,7 @@ configure(this) {
9394
apply plugin: 'idea'
9495
apply plugin: 'eclipse'
9596
apply plugin: 'checkstyle'
97+
apply plugin: 'net.ltgt.errorprone'
9698
configurations {
9799
implementation.setCanBeResolved(true)
98100
api.setCanBeResolved(true)
@@ -184,6 +186,104 @@ configure(this) {
184186
checkstyle 'com.puppycrawl.tools:checkstyle:10.3.1'
185187
checkstyle 'com.github.sevntu-checkstyle:sevntu-checks:1.42.0'
186188
}
189+
// Configuration for the errorprone plugin
190+
// https://github.com/tbroyer/gradle-errorprone-plugin
191+
dependencies {
192+
errorprone "com.google.errorprone:error_prone_core:2.20.0"
193+
}
194+
195+
tasks.withType(JavaCompile) {
196+
options.errorprone {
197+
enabled = project.gradle.startParameter.taskNames.contains('build') || project.gradle.startParameter.taskNames.contains('check')
198+
disableWarningsInGeneratedCode = true
199+
excludedPaths = ".*/build/.*"
200+
excludedPaths = ".*/gsmastub/.*"
201+
disable(
202+
// TODO Remove disabled checks from this list, by fixing remaining usages
203+
"UnusedVariable",
204+
"TypeParameterUnusedInFormals",
205+
"EmptyBlockTag",
206+
"MissingSummary",
207+
"InvalidParam",
208+
"ReturnFromVoid",
209+
"AlmostJavadoc",
210+
"InvalidBlockTag",
211+
"JavaUtilDate", // TODO FINERACT-1298
212+
"ReturnValueIgnored",
213+
"DirectInvocationOnMock",
214+
"CanIgnoreReturnValueSuggester",
215+
"SameNameButDifferent", // Until errorprone recognizes Lombok
216+
"MultiVariableDeclaration", // Until errorprone recognizes Lombok
217+
"UnnecessaryDefaultInEnumSwitch" // FINERACT-1911
218+
)
219+
error(
220+
"DefaultCharset",
221+
"RemoveUnusedImports",
222+
"WaitNotInLoop",
223+
"ThreeLetterTimeZoneID",
224+
"VariableNameSameAsType",
225+
"UnnecessaryParentheses",
226+
"MultipleTopLevelClasses",
227+
"MixedMutabilityReturnType",
228+
"AssertEqualsArgumentOrderChecker",
229+
"EmptySetMultibindingContributions",
230+
"BigDecimalEquals",
231+
"MixedArrayDimensions",
232+
"PackageLocation",
233+
"UseBinds",
234+
"BadImport",
235+
"IntLongMath",
236+
"FloatCast",
237+
"ReachabilityFenceUsage",
238+
"StreamResourceLeak",
239+
"TruthIncompatibleType",
240+
"ByteBufferBackingArray",
241+
"OrphanedFormatString",
242+
"CatchAndPrintStackTrace",
243+
"ObjectToString",
244+
"StringSplitter",
245+
"AssertThrowsMultipleStatements",
246+
"BoxedPrimitiveConstructor",
247+
"EmptyCatch",
248+
"BoxedPrimitiveEquality",
249+
"SynchronizeOnNonFinalField",
250+
"WildcardImport",
251+
"PrivateConstructorForNoninstantiableModule",
252+
"ClassCanBeStatic",
253+
"ClassNewInstance",
254+
"UnnecessaryStaticImport",
255+
"UnsafeFinalization",
256+
"JavaTimeDefaultTimeZone",
257+
"JodaPlusMinusLong",
258+
"SwitchDefault",
259+
"VarTypeName",
260+
"ArgumentSelectionDefectChecker",
261+
"CompareToZero",
262+
"InjectOnConstructorOfAbstractClass",
263+
"ImmutableEnumChecker",
264+
"NarrowingCompoundAssignment",
265+
"MissingCasesInEnumSwitch",
266+
"ReferenceEquality",
267+
"UndefinedEquals",
268+
"UnescapedEntity",
269+
"ModifyCollectionInEnhancedForLoop",
270+
"NonCanonicalType",
271+
"InvalidInlineTag",
272+
"MutablePublicArray",
273+
"StaticAssignmentInConstructor",
274+
"ProtectedMembersInFinalClass",
275+
"OperatorPrecedence",
276+
"EqualsGetClass",
277+
"EqualsUnsafeCast",
278+
"DoubleBraceInitialization",
279+
"UnusedNestedClass",
280+
"UnusedMethod",
281+
"ModifiedButNotUsed",
282+
"InconsistentCapitalization",
283+
"MissingOverride",
284+
)
285+
}
286+
}
187287
}
188288

189289

@@ -192,6 +292,7 @@ checkstyle {
192292
}
193293

194294

295+
195296
group = 'org.mifos'
196297
version = '1.0.0-SNAPSHOT'
197298
sourceCompatibility = JavaVersion.VERSION_17

src/main/java/org/mifos/connector/channel/api/definition/GSMATransactionApi.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,5 @@ public interface GSMATransactionApi {
1515
GsmaP2PResponseDto gsmatransaction(@RequestBody GsmaTransfer requestBody,
1616
@RequestHeader(value = CLIENTCORRELATIONID, required = false) String correlationId,
1717
@RequestHeader(value = "amsName") String amsName, @RequestHeader(value = "accountHoldingInstitutionId") String accountHoldId,
18-
@RequestHeader(value = "X-CallbackURL") String callbackURL)
19-
throws JsonProcessingException;
18+
@RequestHeader(value = "X-CallbackURL") String callbackURL) throws JsonProcessingException;
2019
}

src/main/java/org/mifos/connector/channel/api/implementation/GSMATransactionApiController.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ public class GSMATransactionApiController implements GSMATransactionApi {
2525
private Logger logger = LoggerFactory.getLogger(this.getClass());
2626

2727
@Override
28-
public GsmaP2PResponseDto gsmatransaction(GsmaTransfer requestBody, String correlationId, String amsName, String accountHoldId, String callbackURL)
29-
throws JsonProcessingException {
28+
public GsmaP2PResponseDto gsmatransaction(GsmaTransfer requestBody, String correlationId, String amsName, String accountHoldId,
29+
String callbackURL) throws JsonProcessingException {
3030
Headers headers = new Headers.HeaderBuilder().addHeader("X-CorrelationID", correlationId).addHeader("amsName", amsName)
31-
.addHeader("accountHoldingInstitutionId", accountHoldId).addHeader("X-CallbackURL",callbackURL).build();
31+
.addHeader("accountHoldingInstitutionId", accountHoldId).addHeader("X-CallbackURL", callbackURL).build();
3232
Exchange exchange = SpringWrapperUtil.getDefaultWrappedExchange(producerTemplate.getCamelContext(), headers,
3333
objectMapper.writeValueAsString(requestBody));
3434
producerTemplate.send("direct:post-gsma-transaction", exchange);

src/main/java/org/mifos/connector/channel/camel/routes/ChannelRouteBuilder.java

+4-3
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
import com.fasterxml.jackson.databind.ObjectMapper;
2929
import com.fasterxml.jackson.databind.exc.InvalidFormatException;
3030
import io.camunda.zeebe.client.ZeebeClient;
31+
import java.nio.charset.StandardCharsets;
3132
import java.time.Duration;
3233
import java.time.Instant;
3334
import java.time.LocalDateTime;
@@ -205,8 +206,8 @@ private void transferRoutes() {
205206
Client client = clientProperties.getClient(tenantId);
206207
HttpHeaders httpHeaders = new HttpHeaders();
207208
httpHeaders.add("Platform-TenantId", tenantId);
208-
httpHeaders.add("Authorization",
209-
"Basic " + getEncoder().encodeToString((client.getClientId() + ":" + client.getClientSecret()).getBytes()));
209+
httpHeaders.add("Authorization", "Basic " + getEncoder()
210+
.encodeToString((client.getClientId() + ":" + client.getClientSecret()).getBytes(StandardCharsets.UTF_8)));
210211

211212
HttpEntity<String> entity = new HttpEntity<>(null, httpHeaders);
212213
ResponseEntity<String> exchange = restTemplate.exchange(restAuthHost + "/oauth/token?grant_type=client_credentials",
@@ -662,7 +663,7 @@ private void inboundTransferC2bImplementationRoutes() {
662663
variables.put(TENANT_ID, accountHoldingInstitutionId);
663664
variables.put(CHANNEL_REQUEST, objectMapper.writeValueAsString(gsmaTranfer));
664665
variables.put("clientCorrelationId", clientCorrelationId);
665-
variables.put("X-CallbackURL",callbackURL);
666+
variables.put("X-CallbackURL", callbackURL);
666667
String workflowName = new StringBuilder().append(subtype).append("_").append(type).append("_").append(amsName)
667668
.append("-").append(accountHoldingInstitutionId).toString();
668669
logger.info("Workflow Name:{}", workflowName);

src/main/java/org/mifos/connector/channel/utils/MpesaUtils.java

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
package org.mifos.connector.channel.utils;
22

3+
import com.google.common.base.Splitter;
4+
import com.google.common.collect.Iterables;
35
import org.json.JSONArray;
46
import org.json.JSONObject;
57

@@ -40,10 +42,11 @@ public static String mpesaChannelRequestToChannelRequestConvertor(String channel
4042
}
4143

4244
// setting payer and payee
43-
mpesaChannelRequestJson.put("payer", getPartyInfoJson(payer.split(" ")[0], payer.split(" ")[1]));
44-
45-
mpesaChannelRequestJson.put("payee", getPartyInfoJson(payee.split(" ")[0], payee.split(" ")[1]));
46-
45+
// mpesaChannelRequestJson.put("payer", getPartyInfoJson(payer.split(" ")[0], payer.split(" ")[1]));
46+
mpesaChannelRequestJson.put("payer",
47+
getPartyInfoJson(Iterables.get(Splitter.on(' ').split(payer), 0), Iterables.get(Splitter.on(' ').split(payer), 1)));
48+
mpesaChannelRequestJson.put("payee",
49+
getPartyInfoJson(Iterables.get(Splitter.on(' ').split(payee), 0), Iterables.get(Splitter.on(' ').split(payee), 1)));
4750
return mpesaChannelRequestJson.toString();
4851
}
4952

src/main/java/org/mifos/connector/channel/zeebe/ZeebeProcessStarter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ private String randomCharOfSize(int size) {
8080
char[] arr = data.toCharArray();
8181
StringBuilder s = new StringBuilder();
8282
for (int i = 0; i < size; i++) {
83-
int index = (int) (Math.random() * (data.length()));
83+
int index = (int) (Math.random() * data.length());
8484
s.append(arr[index]);
8585
}
8686
return s.toString();

0 commit comments

Comments
 (0)