greyp9 commented on code in PR #5980: URL: https://github.com/apache/nifi/pull/5980#discussion_r853659743
########## nifi-commons/nifi-build/src/test/java/org/apache/nifi/build/VerifyBuildLocaleTest.java: ########## @@ -0,0 +1,62 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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 + * + * 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 org.apache.nifi.build; + +import org.junit.jupiter.api.Assumptions; +import org.junit.jupiter.api.Disabled; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.assertNotNull; +import static org.junit.jupiter.api.Assertions.assertTrue; + +public class VerifyBuildLocaleTest { + + /** + * Verify that the intended system locale is active for the surefire invocation. + * + * NiFi Surefire invocations may be executed in the context of a particular locale, in order to verify the locale + * independence of the code base. + */ + @Test + public void testVerifyLocale() { + // NiFi CI build sets this environment variable; it will not normally be set + final String ciLocale = System.getenv("NIFI_CI_LOCALE"); + Assumptions.assumeTrue(ciLocale != null); + // if the flag variable is set, verify the system locale of the surefire process against NIFI_CI_LOCALE + final String[] systemPropertyKeys = { + "user.language", + "user.country", + }; + for (String key : systemPropertyKeys) { + // for any key specified in environment variable, verify that it is set correctly + if (ciLocale.contains(key)) { Review Comment: Hmm. I'll have another look. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
