Compare commits

..

No commits in common. "accf0d638a5c1f5718ae244a1ef430d3a243b6eb" and "b8cd4925a322f95dbe8f5b3b330b1cb8e69aa366" have entirely different histories.

16 changed files with 491 additions and 397 deletions

View file

@ -22,8 +22,11 @@ jobs:
distribution: "zulu" distribution: "zulu"
java-version: ${{ matrix.java-version }} java-version: ${{ matrix.java-version }}
- name: Download dependencies - name: Grant execute permission for bld
run: chmod +x bld
- name: Download the dependencies
run: ./bld download run: ./bld download
- name: Run tests - name: Run tests with bld
run: ./bld compile test run: ./bld compile test

View file

@ -69,13 +69,12 @@ The [PropertyFileOperation](https://rife2.github.io/bld-property-file/rife/bld/e
The [Entry](https://rife2.github.io/bld-property-file/rife/bld/extension/propertyfile/Entry.html) class is used to specify modifications to a [String property](https://docs.oracle.com/javase/tutorial/essential/environment/properties.html). The [Entry](https://rife2.github.io/bld-property-file/rife/bld/extension/propertyfile/Entry.html) class is used to specify modifications to a [String property](https://docs.oracle.com/javase/tutorial/essential/environment/properties.html).
| Function | Description/Example | | Function | Description/Example |
|:-----------------|:--------------------------------------------------------------------------------------------------------------------------------------------------| |:-----------------|:--------------------------------------------------------------------------------------------------------|
| `defaultValue()` | The value to be used if the property doesn't exist. | | `defaultValue()` | The value to be used if the property doesn't exist. |
| `delete()` | Delete the property. | | `delete()` | Delete the property. |
| `modify()` | `modify("-foo", String::concat)`<br/>`modify("-foo", (v, s) -> v + s)`<br/>`modify((v, s) -> v.trim())` | | `modify()` | `modify("-foo", String::concat)`<br/>`modify("-foo", (v, s) -> v + s)`<br/>`modify((v, s) -> v.trim())` | Modify an entry value. |
| `pattern()` | If present, will parse the value as a [Formatter](https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/Formatter.html) pattern. | | `set()` | The value to set the property to, regardless of its previous value. |
| `set()` | The value to set the property to, regardless of its previous value. |
## EntryDate ## EntryDate

View file

@ -10,7 +10,6 @@
./bld update-major run ./bld update-major run
./bld update-minor run ./bld update-minor run
./bld update-patch run ./bld update-patch run
./bld update-release run
``` ```
# Delete Version Properties # Delete Version Properties

View file

@ -1,6 +1,6 @@
#Sun Apr 02 10:32:44 PDT 2023 #Sun Apr 02 10:32:44 PDT 2023
bld.downloadExtensionSources=true bld.downloadExtensionSources=true
bld.downloadLocation= bld.downloadLocation=
bld.extension=com.uwyn.rife2:bld-property-file:0.9.5 bld.extension=com.uwyn.rife2:bld-property-file:0.9.6-SNAPSHOT
bld.repositories=MAVEN_LOCAL,RIFE2_SNAPSHOTS,RIFE2_RELEASES bld.repositories=MAVEN_LOCAL,RIFE2_SNAPSHOTS,RIFE2_RELEASES
bld.version=1.9.1 bld.version=1.9.1

View file

@ -42,8 +42,8 @@ public class PropertyFileExampleBuild extends Project {
repositories = List.of(MAVEN_CENTRAL, RIFE2_RELEASES); repositories = List.of(MAVEN_CENTRAL, RIFE2_RELEASES);
scope(test) scope(test)
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 10, 3))) .include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 10, 2)))
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 10, 3))); .include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 10, 2)));
} }
public static void main(String[] args) { public static void main(String[] args) {
@ -107,7 +107,6 @@ public class PropertyFileExampleBuild extends Project {
.entry(new EntryDate("release").now().pattern("yyyyMMddHHmmss")) .entry(new EntryDate("release").now().pattern("yyyyMMddHHmmss"))
// prepend 'beta.' to the release // prepend 'beta.' to the release
.entry(new Entry("release").modify("beta.", (v, s) -> s + v)) .entry(new Entry("release").modify("beta.", (v, s) -> s + v))
.entry(buildDateEntry)
.execute(); .execute();
} }

View file

@ -1,4 +1,6 @@
# #
#Tue Jul 16 16:16:38 PDT 2024 #Sun Oct 22 14:31:42 PDT 2023
build.date=2024-07-16 release=beta.20231022143142
release=beta.20240716161638 version.major=1
version.minor=0
version.patch=1

View file

@ -1,7 +1,7 @@
bld.downloadExtensionJavadoc=false bld.downloadExtensionJavadoc=false
bld.downloadExtensionSources=true bld.downloadExtensionSources=true
bld.downloadLocation= bld.downloadLocation=
bld.extension-jacoco=com.uwyn.rife2:bld-jacoco-report:0.9.6 bld.extension-jacoco=com.uwyn.rife2:bld-jacoco-report:0.9.5
bld.extension-pmd=com.uwyn.rife2:bld-pmd:1.1.2 bld.extension-pmd=com.uwyn.rife2:bld-pmd:1.1.0
bld.repositories=MAVEN_CENTRAL,MAVEN_LOCAL,RIFE2_SNAPSHOTS,RIFE2_RELEASES bld.repositories=MAVEN_CENTRAL,MAVEN_LOCAL,RIFE2_SNAPSHOTS,RIFE2_RELEASES
bld.version=1.9.1 bld.version=1.9.1

View file

@ -24,6 +24,7 @@ import rife.bld.publish.PublishDeveloper;
import rife.bld.publish.PublishLicense; import rife.bld.publish.PublishLicense;
import rife.bld.publish.PublishScm; import rife.bld.publish.PublishScm;
import java.io.IOException;
import java.util.List; import java.util.List;
import static rife.bld.dependencies.Repository.MAVEN_CENTRAL; import static rife.bld.dependencies.Repository.MAVEN_CENTRAL;
@ -46,9 +47,9 @@ public class PropertyFileBuild extends Project {
scope(compile) scope(compile)
.include(dependency("com.uwyn.rife2", "bld", version(1, 9, 1))); .include(dependency("com.uwyn.rife2", "bld", version(1, 9, 1)));
scope(test) scope(test)
.include(dependency("org.jsoup", "jsoup", version(1, 18, 1))) .include(dependency("org.jsoup", "jsoup", version(1, 17, 2)))
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 10, 3))) .include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 10, 2)))
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 10, 3))) .include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 10, 2)))
.include(dependency("org.assertj:assertj-joda-time:2.2.0")); .include(dependency("org.assertj:assertj-joda-time:2.2.0"));
javadocOperation() javadocOperation()
@ -96,14 +97,14 @@ public class PropertyFileBuild extends Project {
} }
@BuildCommand(summary = "Generates JaCoCo Reports") @BuildCommand(summary = "Generates JaCoCo Reports")
public void jacoco() throws Exception { public void jacoco() throws IOException {
new JacocoReportOperation() new JacocoReportOperation()
.fromProject(this) .fromProject(this)
.execute(); .execute();
} }
@BuildCommand(summary = "Runs PMD analysis") @BuildCommand(summary = "Runs PMD analysis")
public void pmd() throws Exception { public void pmd() {
new PmdOperation() new PmdOperation()
.fromProject(this) .fromProject(this)
.failOnViolation(true) .failOnViolation(true)

View file

@ -25,59 +25,62 @@ import java.util.function.BiFunction;
* @author <a href="https://github.com/gbevin">Geert Bevin</a> * @author <a href="https://github.com/gbevin">Geert Bevin</a>
* @since 1.0 * @since 1.0
*/ */
public class Entry extends EntryBase<Entry> { public class Entry extends EntryBase {
private String modifyValue_ = "";
private BiFunction<String, String, String> modify_;
/** /**
* Creates a new {@link Entry entry}. * Instantiates a new Entry.
* *
* @param key the required property key * @param key the key
*/ */
public Entry(String key) { public Entry(String key) {
super(key); super(key);
} }
/** /**
* Returns the modify function. * <p>Sets the initial value to set the {@link java.util.Properties property} to, if not already defined.</p>
* *
* @return the modify function * @param defaultValue the default value
* @return the entry
*/ */
protected BiFunction<String, String, String> modify() { @SuppressWarnings("unused")
return modify_; public Entry defaultValue(Object defaultValue) {
setDefaultValue(defaultValue);
return this;
} }
/** /**
* Sets the modify function. * Sets the {@link Entry entry} up for deletion.
* *
* @param modify the modify function * @return the entry
*/
public Entry delete() {
setDelete();
return this;
}
/**
* Creates a new {@link Entry entry}.
*
* @param modify the modification function
* @return the entry
*/ */
public Entry modify(BiFunction<String, String, String> modify) { public Entry modify(BiFunction<String, String, String> modify) {
modify_ = modify; setModify(modify);
return this; return this;
} }
/** /**
* Sets the modify function. * Creates a new {@link Entry entry}.
* *
* @param value the value to perform a modification with * @param value the value to perform a modification with
* @param modify the modify function * @param modify the modification function
* @return the entry
*/ */
public Entry modify(String value, BiFunction<String, String, String> modify) { public Entry modify(String value, BiFunction<String, String, String> modify) {
modifyValue_ = value; setModifyValue(value);
modify_ = modify; setModify(modify);
return this; return this;
} }
/**
* Returns the value to be used in the {@link #modify_} function.
*
* @return the modify value
*/
protected String modifyValue() {
return modifyValue_;
}
/** /**
* Sets the new {@link java.util.Properties property} value. * Sets the new {@link java.util.Properties property} value.
* *
@ -85,7 +88,7 @@ public class Entry extends EntryBase<Entry> {
* @return the entry * @return the entry
*/ */
public Entry set(Object s) { public Entry set(Object s) {
newValue(s); setNewValue(s);
return this; return this;
} }
} }

View file

@ -16,6 +16,7 @@
package rife.bld.extension.propertyfile; package rife.bld.extension.propertyfile;
import java.util.function.BiFunction;
import java.util.function.IntFunction; import java.util.function.IntFunction;
/** /**
@ -25,14 +26,17 @@ import java.util.function.IntFunction;
* @author <a href="https://github.com/gbevin">Geert Bevin</a> * @author <a href="https://github.com/gbevin">Geert Bevin</a>
* @since 1.0 * @since 1.0
*/ */
@SuppressWarnings({"unchecked", "PMD.AbstractClassWithoutAbstractMethod"}) @SuppressWarnings("PMD.DataClass")
public abstract class EntryBase<T> { public class EntryBase {
private IntFunction<Integer> calc_; private IntFunction<Integer> calc_;
private Object defaultValue_; private Object defaultValue_;
private boolean isDelete_; private boolean isDelete_;
private String key_; private String key_;
private String modifyValue_ = "";
private BiFunction<String, String, String> modify_;
private Object newValue_; private Object newValue_;
private Object pattern_; private String pattern_ = "";
private EntryDate.Units unit_ = EntryDate.Units.DAY;
/** /**
* Creates a new {@link EntryBase entry}. * Creates a new {@link EntryBase entry}.
@ -48,45 +52,71 @@ public abstract class EntryBase<T> {
* *
* @return the calc function * @return the calc function
*/ */
protected IntFunction<Integer> calc() { protected IntFunction<Integer> getCalc() {
return calc_; return calc_;
} }
/**
* Sets the calculation function.
*
* @param calc the calc function
*/
public T calc(IntFunction<Integer> calc) {
calc_ = calc;
return (T) this;
}
/** /**
* Returns the default value. * Returns the default value.
* *
* @return the default value * @return the default value
*/ */
protected Object defaultValue() { protected Object getDefaultValue() {
return defaultValue_; return defaultValue_;
} }
/** /**
* Sets the initial value to set the {@link java.util.Properties property} to, if not already defined. * Returns the key of the {@link java.util.Properties property}.
* *
* @param defaultValue the default value * @return the key
*/ */
public T defaultValue(Object defaultValue) { protected String getKey() {
defaultValue_ = defaultValue; return key_;
return (T) this;
} }
/** /**
* Indicates that the {@link java.util.Properties property} is to be deleted. * Returns the modify function.
*
* @return the modify function
*/ */
public T delete() { protected BiFunction<String, String, String> getModify() {
isDelete_ = true; return modify_;
return (T) this; }
/**
* Returns the value to be used in the {@link #modify_} function.
*
* @return the modify value
*/
protected String getModifyValue() {
return modifyValue_;
}
/**
* Returns the new value to set the {@link java.util.Properties property)} to.
*
* @return the new value
*/
public Object getNewValue() {
return newValue_;
}
/**
* Returns the pattern.
*
* @return the pattern
*/
protected String getPattern() {
return pattern_;
}
/**
* Returns the {@link EntryDate.Units unit}.
*
* @return the unit
*/
protected EntryDate.Units getUnit() {
return unit_;
} }
/** /**
@ -99,32 +129,78 @@ public abstract class EntryBase<T> {
} }
/** /**
* Returns the key of the {@link java.util.Properties property}. * Sets the key of the {@link java.util.Properties property}.
* *
* @return the key * @param key the {@link java.util.Properties property} key
* @return this instance
*/ */
protected String key() { @SuppressWarnings("unused")
return key_; public EntryBase key(String key) {
key_ = key;
return this;
}
/**
* Sets the calculation function.
*
* @param calc the calc function
*/
protected void setCalc(IntFunction<Integer> calc) {
calc_ = calc;
}
/**
* Sets the initial value to set the {@link java.util.Properties property} to, if not already defined.
*
* @param defaultValue the default value
*/
protected void setDefaultValue(Object defaultValue) {
defaultValue_ = defaultValue;
}
/**
* Sets the {@link java.util.Properties property} to be deleted.
*/
protected void setDelete() {
isDelete_ = true;
} }
/** /**
* Sets the key of the {@link java.util.Properties property}. * Sets the key of the {@link java.util.Properties property}.
* *
* @param key the {@link java.util.Properties property} key * @param key the {@link java.util.Properties property} key
* @return this instance
*/ */
public T key(String key) { protected void setKey(String key) {
key_ = key; key_ = key;
return (T) this;
} }
/** /**
* Returns the new value to set the {@link java.util.Properties property)} to. * Sets the modify function.
* *
* @return the new value * @param modify the modify function
*/ */
protected Object newValue() { protected void setModify(BiFunction<String, String, String> modify) {
return newValue_; modify_ = modify;
}
/**
* Sets the modify function.
*
* @param value the value to perform a modification with
* @param modify the modify function
*/
protected void setModify(String value, BiFunction<String, String, String> modify) {
modifyValue_ = value;
modify_ = modify;
}
/**
* Sets the modify value.
*
* @param value the modify value.
*/
protected void setModifyValue(String value) {
modifyValue_ = value;
} }
/** /**
@ -132,26 +208,26 @@ public abstract class EntryBase<T> {
* *
* @param newValue the new value * @param newValue the new value
*/ */
protected void newValue(Object newValue) { public void setNewValue(Object newValue) {
newValue_ = newValue; newValue_ = newValue;
} }
/** /**
* Returns the pattern. * Sets the {@link java.text.DecimalFormat DecimalFormat} or {@link java.time.format.DateTimeFormatter DateTimeFormatter}
* * pattern to be used with {@link EntryDate} or {@link EntryInt} respectively.
* @return the pattern
*/
protected Object pattern() {
return pattern_;
}
/**
* Sets the {@link java.util.Formatter} pattern.
* *
* @param pattern the pattern * @param pattern the pattern
*/ */
public T pattern(Object pattern) { protected void setPattern(String pattern) {
pattern_ = pattern; pattern_ = pattern;
return (T) this; }
/**
* Sets the {@link EntryDate.Units unit} value to apply to calculations.
*
* @param unit the {@link EntryDate.Units unit}
*/
protected void setUnit(EntryDate.Units unit) {
unit_ = unit;
} }
} }

View file

@ -19,6 +19,7 @@ package rife.bld.extension.propertyfile;
import java.time.*; import java.time.*;
import java.util.Calendar; import java.util.Calendar;
import java.util.Date; import java.util.Date;
import java.util.function.IntFunction;
/** /**
* Declares the modifications to be made to a {@link java.util.Properties Date-based property}. * Declares the modifications to be made to a {@link java.util.Properties Date-based property}.
@ -26,11 +27,9 @@ import java.util.Date;
* @author <a href="https://erik.thauvin.net/">Erik C. Thauvin</a> * @author <a href="https://erik.thauvin.net/">Erik C. Thauvin</a>
* @since 1.0 * @since 1.0
*/ */
public class EntryDate extends EntryBase<EntryDate> { public class EntryDate extends EntryBase {
private EntryDate.Units unit_ = EntryDate.Units.DAY;
/** /**
* Creates a new {@link EntryDate entry}. * Creates a new date {@link Entry entry}.
* *
* @param key the required property key * @param key the required property key
*/ */
@ -38,13 +37,46 @@ public class EntryDate extends EntryBase<EntryDate> {
super(key); super(key);
} }
/**
* Creates a new {@link EntryDate entry}.
*
* @param calc the calculation function
* @return this instance
*/
public EntryDate calc(IntFunction<Integer> calc) {
setCalc(calc);
return this;
}
/**
* Sets the {@link EntryDate entry} up for deletion.
*
* @return this instance
*/
public EntryDate delete() {
setDelete();
return this;
}
/** /**
* Sets the new {@link java.util.Properties property} value to now. * Sets the new {@link java.util.Properties property} value to now.
* *
* @return this instance * @return this instance
*/ */
public EntryDate now() { public EntryDate now() {
newValue("now"); setNewValue("now");
return this;
}
/**
* Sets the pattern for {@link EntryInt} and {@link EntryDate} to{@link java.text.DecimalFormat DecimalFormat} and
* {@link java.time.format.DateTimeFormatter DateTimeFormatter} respectively.
*
* @param pattern the pattern
* @return this instance
*/
public EntryDate pattern(String pattern) {
setPattern(pattern);
return this; return this;
} }
@ -55,7 +87,7 @@ public class EntryDate extends EntryBase<EntryDate> {
* @return this instance * @return this instance
*/ */
public EntryDate set(Instant instant) { public EntryDate set(Instant instant) {
newValue(instant); setNewValue(instant);
return this; return this;
} }
@ -66,7 +98,7 @@ public class EntryDate extends EntryBase<EntryDate> {
* @return this instance * @return this instance
*/ */
public EntryDate set(LocalDate date) { public EntryDate set(LocalDate date) {
newValue(date); setNewValue(date);
return this; return this;
} }
@ -77,7 +109,7 @@ public class EntryDate extends EntryBase<EntryDate> {
* @return this instance * @return this instance
*/ */
public EntryDate set(LocalDateTime date) { public EntryDate set(LocalDateTime date) {
newValue(date); setNewValue(date);
return this; return this;
} }
@ -88,7 +120,7 @@ public class EntryDate extends EntryBase<EntryDate> {
* @return this instance * @return this instance
*/ */
public EntryDate set(ZonedDateTime date) { public EntryDate set(ZonedDateTime date) {
newValue(date); setNewValue(date);
return this; return this;
} }
@ -99,7 +131,7 @@ public class EntryDate extends EntryBase<EntryDate> {
* @return this instance * @return this instance
*/ */
public EntryDate set(LocalTime time) { public EntryDate set(LocalTime time) {
newValue(time); setNewValue(time);
return this; return this;
} }
@ -110,7 +142,7 @@ public class EntryDate extends EntryBase<EntryDate> {
* @return this instance * @return this instance
*/ */
public EntryDate set(Calendar cal) { public EntryDate set(Calendar cal) {
newValue(cal); setNewValue(cal);
return this; return this;
} }
@ -121,19 +153,10 @@ public class EntryDate extends EntryBase<EntryDate> {
* @return this instance * @return this instance
*/ */
public EntryDate set(Date date) { public EntryDate set(Date date) {
newValue(date); setNewValue(date);
return this; return this;
} }
/**
* Returns the {@link EntryDate.Units unit}.
*
* @return the unit
*/
public EntryDate.Units unit() {
return unit_;
}
/** /**
* Sets the {@link Units unit} value to apply to calculations for {@link EntryDate}. * Sets the {@link Units unit} value to apply to calculations for {@link EntryDate}.
* *
@ -141,17 +164,7 @@ public class EntryDate extends EntryBase<EntryDate> {
* @return this instance * @return this instance
*/ */
public EntryDate unit(Units unit) { public EntryDate unit(Units unit) {
unit_ = unit; setUnit(unit);
return this;
}
/**
* Sets the {@link java.time.format.DateTimeFormatter DateTimeFormatter} pattern.
*
* @param pattern the pattern
*/
public EntryDate pattern(String pattern) {
super.pattern(pattern);
return this; return this;
} }

View file

@ -16,15 +16,17 @@
package rife.bld.extension.propertyfile; package rife.bld.extension.propertyfile;
import java.util.function.IntFunction;
/** /**
* Declares the modifications to be made to an {@link java.util.Properties Integer-based property}. * Declares the modifications to be made to an {@link java.util.Properties Integer-based property}.
* *
* @author <a href="https://erik.thauvin.net/">Erik C. Thauvin</a> * @author <a href="https://erik.thauvin.net/">Erik C. Thauvin</a>
* @since 1.0 * @since 1.0
*/ */
public class EntryInt extends EntryBase<EntryInt> { public class EntryInt extends EntryBase {
/** /**
* Creates a new {@link EntryInt entry}. * Creates a new date {@link Entry entry}.
* *
* @param key the required property key * @param key the required property key
*/ */
@ -32,6 +34,39 @@ public class EntryInt extends EntryBase<EntryInt> {
super(key); super(key);
} }
/**
* Creates a new {@link EntryInt entry}.
*
* @param calc the calculation function.
* @return this instance
*/
public EntryInt calc(IntFunction<Integer> calc) {
setCalc(calc);
return this;
}
/**
* Sets the initial value to set the {@link java.util.Properties property} to, if not already defined.
*
* @param defaultValue the default value
* @return this instance
*/
@SuppressWarnings("unused")
public EntryInt defaultValue(Object defaultValue) {
setDefaultValue(defaultValue);
return this;
}
/**
* Sets the {@link EntryInt entry} up for deletion.
*
* @return this instance
*/
public EntryInt delete() {
setDelete();
return this;
}
/** /**
* Sets the new {@link java.util.Properties property} value to an integer. * Sets the new {@link java.util.Properties property} value to an integer.
* *
@ -39,17 +74,7 @@ public class EntryInt extends EntryBase<EntryInt> {
* @return this instance * @return this instance
*/ */
public EntryInt set(int i) { public EntryInt set(int i) {
newValue(i); setNewValue(i);
return this;
}
/**
* Sets the {@link java.text.DecimalFormat DecimalFormat} pattern.
*
* @param pattern the pattern
*/
public EntryInt pattern(String pattern) {
super.pattern(pattern);
return this; return this;
} }
} }

View file

@ -18,14 +18,11 @@ package rife.bld.extension.propertyfile;
import rife.bld.BaseProject; import rife.bld.BaseProject;
import rife.bld.operations.AbstractOperation; import rife.bld.operations.AbstractOperation;
import rife.bld.operations.exceptions.ExitStatusException;
import java.io.File; import java.io.File;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;
import java.util.Properties; import java.util.Properties;
import java.util.logging.Level;
import java.util.logging.Logger;
/** /**
* Creates or applies edits to a {@link Properties Properties} file. * Creates or applies edits to a {@link Properties Properties} file.
@ -34,8 +31,7 @@ import java.util.logging.Logger;
* @since 1.0 * @since 1.0
*/ */
public class PropertyFileOperation extends AbstractOperation<PropertyFileOperation> { public class PropertyFileOperation extends AbstractOperation<PropertyFileOperation> {
private final static Logger LOGGER = Logger.getLogger(PropertyFileOperation.class.getName()); private final List<EntryBase> entries_ = new ArrayList<>();
private final List<EntryBase<?>> entries_ = new ArrayList<>();
private String comment_ = ""; private String comment_ = "";
private boolean failOnWarning_; private boolean failOnWarning_;
private File file_; private File file_;
@ -59,7 +55,8 @@ public class PropertyFileOperation extends AbstractOperation<PropertyFileOperati
* @param entry the {@link Entry entry} * @param entry the {@link Entry entry}
* @return this instance * @return this instance
*/ */
public PropertyFileOperation entry(EntryBase<?> entry) { @SuppressWarnings("unused")
public PropertyFileOperation entry(EntryBase entry) {
entries_.add(entry); entries_.add(entry);
return this; return this;
} }
@ -69,49 +66,38 @@ public class PropertyFileOperation extends AbstractOperation<PropertyFileOperati
*/ */
@Override @Override
public void execute() throws Exception { public void execute() throws Exception {
if (project_ == null) {
if (LOGGER.isLoggable(Level.SEVERE) && !silent()) {
LOGGER.log(Level.SEVERE, "A project is required");
}
throw new ExitStatusException(ExitStatusException.EXIT_FAILURE);
}
var commandName = project_.getCurrentCommandName(); var commandName = project_.getCurrentCommandName();
var properties = new Properties(); var properties = new Properties();
var success = true; var success = false;
if (file_ == null) { if (file_ == null) {
warn(commandName, "A properties file must be specified."); PropertyFileUtils.warn(commandName, "A properties file must be specified.");
} else { } else {
success = PropertyFileUtils.loadProperties(commandName, file_, properties, silent()); success = PropertyFileUtils.loadProperties(commandName, file_, properties);
} }
if (success) { if (success) {
for (var entry : entries_) { for (var entry : entries_) {
if (entry.key().isBlank()) { if (entry.getKey().isBlank()) {
warn(commandName, "An entry key must specified."); PropertyFileUtils.warn(commandName, "An entry key must specified.");
} else { } else {
var key = entry.key(); var key = entry.getKey();
Object value = entry.newValue(); Object value = entry.getNewValue();
Object defaultValue = entry.defaultValue(); Object defaultValue = entry.getDefaultValue();
var p = properties.getProperty(key); var p = properties.getProperty(key);
if (entry.isDelete()) { if (entry.isDelete()) {
properties.remove(key); properties.remove(key);
} else if ((value == null || String.valueOf(value).isBlank()) } else if ((value == null || String.valueOf(value).isBlank())
&& (defaultValue == null || String.valueOf(defaultValue).isBlank()) && (defaultValue == null || String.valueOf(defaultValue).isBlank())
&& (p == null || p.isBlank())) { && (p == null || p.isBlank())) {
warn(commandName, "An entry must be set or have a default value: " + key); PropertyFileUtils.warn(commandName, "An entry must be set or have a default value: " + key);
} else { } else {
try { if (entry instanceof EntryDate) {
if (entry instanceof EntryDate) { success = PropertyFileUtils.processDate(commandName, properties, (EntryDate) entry, failOnWarning_);
PropertyFileUtils.processDate(properties, (EntryDate) entry); } else if (entry instanceof EntryInt) {
} else if (entry instanceof EntryInt) { success = PropertyFileUtils.processInt(commandName, properties, (EntryInt) entry, failOnWarning_);
PropertyFileUtils.processInt(properties, (EntryInt) entry); } else {
} else { success = PropertyFileUtils.processString(properties, (Entry) entry);
PropertyFileUtils.processString(properties, (Entry) entry);
}
} catch (IllegalArgumentException e) {
warn(commandName, e.getMessage());
} }
} }
} }
@ -166,24 +152,4 @@ public class PropertyFileOperation extends AbstractOperation<PropertyFileOperati
project_ = project; project_ = project;
return this; return this;
} }
/**
* Logs a warning.
*
* @param command The command name
* @param message the message log
* @throws ExitStatusException if a {@link Level#SEVERE} exception occurs
*/
private void warn(String command, String message) throws ExitStatusException {
if (failOnWarning_) {
if (LOGGER.isLoggable(Level.SEVERE) && !silent()) {
LOGGER.log(Level.SEVERE, '[' + command + "] " + message);
throw new ExitStatusException(ExitStatusException.EXIT_FAILURE);
}
} else {
if (LOGGER.isLoggable(Level.WARNING) && !silent()) {
LOGGER.warning('[' + command + "] " + message);
}
}
}
} }

View file

@ -16,8 +16,7 @@
package rife.bld.extension.propertyfile; package rife.bld.extension.propertyfile;
import rife.bld.operations.exceptions.ExitStatusException; import javax.imageio.IIOException;
import java.io.File; import java.io.File;
import java.io.IOException; import java.io.IOException;
import java.nio.file.Files; import java.nio.file.Files;
@ -70,153 +69,165 @@ public final class PropertyFileUtils {
* @param file the file location * @param file the file location
* @param p the {@link Properties properties} to load into. * @param p the {@link Properties properties} to load into.
* @return the boolean * @return the boolean
* @throws ExitStatusException if an error occurred * @throws Exception the exception
*/ */
public static boolean loadProperties(String command, File file, Properties p, boolean silent) @SuppressWarnings("PMD.SignatureDeclareThrowsException")
throws ExitStatusException { public static boolean loadProperties(String command, File file, Properties p) throws Exception {
boolean success = true; boolean success = true;
if (file != null) { if (file != null) {
if (file.exists()) { if (file.exists()) {
try (var propStream = Files.newInputStream(file.toPath(), StandardOpenOption.READ)) { try (var propStream = Files.newInputStream(file.toPath(), StandardOpenOption.READ)) {
p.load(propStream); p.load(propStream);
} catch (IOException ioe) { } catch (IOException ioe) {
warn(command, "Could not load properties file: " + ioe.getMessage(), true, silent); warn(command, "Could not load properties file: " + ioe.getMessage(), ioe, true);
success = false; success = false;
} }
} }
} else { } else {
warn(command, "Please specify the properties file location.", true, silent); warn(command, "Please specify the properties file location.");
success = false; success = false;
} }
return success; return success;
} }
private static String objectToString(Object o) {
if (o == null) {
return "";
} else {
return String.valueOf(o);
}
}
/** /**
* Processes a date {@link Properties property}. * Processes a date {@link Properties property}.
* *
* @param p the {@link Properties property} * @param command the issuing command
* @param entry the {@link Entry} containing the {@link Properties property} edits * @param p the {@link Properties property}
* @throws DateTimeException if a parsing error occurs * @param entry the {@link Entry} containing the {@link Properties property} edits
* @param failOnWarning the fail on warning
* @return the boolean
* @throws Exception the exception
*/ */
@SuppressWarnings("PMD.ExceptionAsFlowControl") @SuppressWarnings({"PMD.SignatureDeclareThrowsException", "PMD.ExceptionAsFlowControl"})
public static void processDate(Properties p, EntryDate entry) throws IllegalArgumentException { public static boolean processDate(String command, Properties p, EntryDate entry, boolean failOnWarning)
var currentValue = currentValue(null, entry.defaultValue(), entry.newValue()); throws Exception {
var pattern = objectToString(entry.pattern()); var success = true;
var value = currentValue(null, entry.getDefaultValue(), entry.getNewValue());
var pattern = entry.getPattern();
var dateValue = String.valueOf(currentValue); var parsedValue = String.valueOf(value);
if (pattern != null && !pattern.isBlank()) { if (pattern != null && !pattern.isBlank()) {
var offset = 0; var offset = 0;
if (entry.calc() != null) { if (entry.getCalc() != null) {
offset = entry.calc().apply(offset); offset = entry.getCalc().apply(offset);
} }
var dtf = DateTimeFormatter.ofPattern(pattern); var dtf = DateTimeFormatter.ofPattern(pattern);
var unit = entry.unit(); var unit = entry.getUnit();
try { try {
if (currentValue instanceof String) { if (value instanceof String) {
if ("now".equalsIgnoreCase((String) currentValue)) { if ("now".equalsIgnoreCase((String) value)) {
currentValue = ZonedDateTime.now(); value = ZonedDateTime.now();
} else { } else {
throw new DateTimeException("Excepted: Calendar, Date or java.time."); throw new DateTimeException("Excepted: Calendar, Date or java.time.");
} }
} else if (currentValue instanceof LocalDateTime) { } else if (value instanceof LocalDateTime) {
currentValue = ((LocalDateTime) currentValue).atZone(ZoneId.systemDefault()); value = ((LocalDateTime) value).atZone(ZoneId.systemDefault());
} else if (currentValue instanceof Date) { } else if (value instanceof Date) {
currentValue = ((Date) currentValue).toInstant().atZone(ZoneId.systemDefault()); value = ((Date) value).toInstant().atZone(ZoneId.systemDefault());
} else if (currentValue instanceof Calendar) { } else if (value instanceof Calendar) {
currentValue = ((Calendar) currentValue).toInstant().atZone(ZoneId.systemDefault()); value = ((Calendar) value).toInstant().atZone(ZoneId.systemDefault());
} else if (currentValue instanceof Instant) { } else if (value instanceof Instant) {
currentValue = ((Instant) currentValue).atZone(ZoneId.systemDefault()); value = ((Instant) value).atZone(ZoneId.systemDefault());
} }
if (currentValue instanceof LocalDate) { if (value instanceof LocalDate) {
if (offset != 0) { if (offset != 0) {
if (unit == EntryDate.Units.DAY) { if (unit == EntryDate.Units.DAY) {
currentValue = ((LocalDate) currentValue).plusDays(offset); value = ((LocalDate) value).plusDays(offset);
} else if (unit == EntryDate.Units.MONTH) { } else if (unit == EntryDate.Units.MONTH) {
currentValue = ((LocalDate) currentValue).plusMonths(offset); value = ((LocalDate) value).plusMonths(offset);
} else if (unit == EntryDate.Units.WEEK) { } else if (unit == EntryDate.Units.WEEK) {
currentValue = ((LocalDate) currentValue).plusWeeks(offset); value = ((LocalDate) value).plusWeeks(offset);
} else if (unit == EntryDate.Units.YEAR) { } else if (unit == EntryDate.Units.YEAR) {
currentValue = ((LocalDate) currentValue).plusYears(offset); value = ((LocalDate) value).plusYears(offset);
} }
} }
dateValue = dtf.format((LocalDate) currentValue); parsedValue = dtf.format((LocalDate) value);
} else if (currentValue instanceof LocalTime) { } else if (value instanceof LocalTime) {
if (offset != 0) { if (offset != 0) {
if (unit == EntryDate.Units.SECOND) { if (unit == EntryDate.Units.SECOND) {
currentValue = ((LocalTime) currentValue).plusSeconds(offset); value = ((LocalTime) value).plusSeconds(offset);
} else if (unit == EntryDate.Units.MINUTE) { } else if (unit == EntryDate.Units.MINUTE) {
currentValue = ((LocalTime) currentValue).plusMinutes(offset); value = ((LocalTime) value).plusMinutes(offset);
} else if (unit == EntryDate.Units.HOUR) { } else if (unit == EntryDate.Units.HOUR) {
currentValue = ((LocalTime) currentValue).plusHours(offset); value = ((LocalTime) value).plusHours(offset);
} }
} }
dateValue = dtf.format((LocalTime) currentValue); parsedValue = dtf.format((LocalTime) value);
} else if (currentValue instanceof ZonedDateTime) { } else if (value instanceof ZonedDateTime) {
if (offset != 0) { if (offset != 0) {
if (unit == EntryDate.Units.DAY) { if (unit == EntryDate.Units.DAY) {
currentValue = ((ZonedDateTime) currentValue).plusDays(offset); value = ((ZonedDateTime) value).plusDays(offset);
} else if (unit == EntryDate.Units.MONTH) { } else if (unit == EntryDate.Units.MONTH) {
currentValue = ((ZonedDateTime) currentValue).plusMonths(offset); value = ((ZonedDateTime) value).plusMonths(offset);
} else if (unit == EntryDate.Units.WEEK) { } else if (unit == EntryDate.Units.WEEK) {
currentValue = ((ZonedDateTime) currentValue).plusWeeks(offset); value = ((ZonedDateTime) value).plusWeeks(offset);
} else if (unit == EntryDate.Units.YEAR) { } else if (unit == EntryDate.Units.YEAR) {
currentValue = ((ZonedDateTime) currentValue).plusYears(offset); value = ((ZonedDateTime) value).plusYears(offset);
} else if (unit == EntryDate.Units.SECOND) { } else if (unit == EntryDate.Units.SECOND) {
currentValue = ((ZonedDateTime) currentValue).plusSeconds(offset); value = ((ZonedDateTime) value).plusSeconds(offset);
} else if (unit == EntryDate.Units.MINUTE) { } else if (unit == EntryDate.Units.MINUTE) {
currentValue = ((ZonedDateTime) currentValue).plusMinutes(offset); value = ((ZonedDateTime) value).plusMinutes(offset);
} else if (unit == EntryDate.Units.HOUR) { } else if (unit == EntryDate.Units.HOUR) {
currentValue = ((ZonedDateTime) currentValue).plusHours(offset); value = ((ZonedDateTime) value).plusHours(offset);
} }
} }
dateValue = dtf.format((ZonedDateTime) currentValue); parsedValue = dtf.format((ZonedDateTime) value);
} }
} catch (DateTimeException dte) { } catch (DateTimeException dte) {
throw new IllegalArgumentException( warn(command, "Non-date value for \"" + entry.getKey() + "\" --> " + dte.getMessage(),
"Non-date value for \"" + entry.key() + "\" --> " + dte.getMessage(), dte); dte, failOnWarning);
success = false;
} }
} }
p.setProperty(entry.key(), dateValue);
if (success) {
p.setProperty(entry.getKey(), parsedValue);
}
return success;
} }
/** /**
* Processes an integer {@link Properties property}. * Processes an integer {@link Properties property}.
* *
* @param p the {@link Properties property} * @param command the issuing command
* @param entry the {@link Entry} containing the {@link Properties property} edits * @param p the {@link Properties property}
* @throws NumberFormatException if a parsing error occurs * @param entry the {@link Entry} containing the {@link Properties property} edits
* @param failOnWarning the fail on warning
* @return the boolean
* @throws Exception the exception
*/ */
public static void processInt(Properties p, EntryInt entry) throws IllegalArgumentException { @SuppressWarnings("PMD.SignatureDeclareThrowsException")
public static boolean processInt(String command, Properties p, EntryInt entry, boolean failOnWarning)
throws Exception {
var success = true;
int intValue = 0; int intValue = 0;
try { try {
var fmt = new DecimalFormat(objectToString(entry.pattern())); var fmt = new DecimalFormat(entry.getPattern());
var currentValue = currentValue(p.getProperty(entry.key()), entry.defaultValue(), entry.newValue()); var value = currentValue(p.getProperty(entry.getKey()), entry.getDefaultValue(),
entry.getNewValue());
if (currentValue != null) { if (value != null) {
intValue = fmt.parse(String.valueOf(currentValue)).intValue(); intValue = fmt.parse(String.valueOf(value)).intValue();
} }
if (entry.calc() != null) { if (entry.getCalc() != null) {
intValue = entry.calc().apply(intValue); intValue = entry.getCalc().apply(intValue);
} }
p.setProperty(entry.getKey(), fmt.format(intValue));
p.setProperty(entry.key(), fmt.format(intValue));
} catch (NumberFormatException | ParseException e) { } catch (NumberFormatException | ParseException e) {
throw new IllegalArgumentException( warn(command, "Non-integer value for \"" + entry.getKey() + "\" --> " + e.getMessage(), e,
"Non-integer value for \"" + entry.key() + "\" --> " + e.getMessage(), e); failOnWarning);
success = false;
} }
return success;
} }
/** /**
@ -224,16 +235,19 @@ public final class PropertyFileUtils {
* *
* @param p the {@link Properties property} * @param p the {@link Properties property}
* @param entry the {@link Entry} containing the {@link Properties property} edits * @param entry the {@link Entry} containing the {@link Properties property} edits
* @return the boolean
*/ */
public static void processString(Properties p, Entry entry) { @SuppressWarnings("SameReturnValue")
var currentValue = currentValue(p.getProperty(entry.key()), entry.defaultValue(), entry.newValue()); public static boolean processString(Properties p, Entry entry) {
var value = currentValue(p.getProperty(entry.getKey()), entry.getDefaultValue(), entry.getNewValue());
p.setProperty(entry.key(), String.format(String.valueOf(currentValue), entry.pattern())); p.setProperty(entry.getKey(), String.valueOf(value));
if (entry.modify() != null && entry.modifyValue() != null) { if (entry.getModify() != null && entry.getModifyValue() != null) {
var modify = entry.modify().apply(p.getProperty(entry.key()), entry.modifyValue()); p.setProperty(entry.getKey(), entry.getModify().apply(p.getProperty(entry.getKey()), entry.getModifyValue()));
p.setProperty(entry.key(), String.format(modify, entry.pattern()));
} }
return true;
} }
/** /**
@ -247,8 +261,20 @@ public final class PropertyFileUtils {
public static void saveProperties(File file, String comment, Properties p) throws IOException { public static void saveProperties(File file, String comment, Properties p) throws IOException {
try (var output = Files.newOutputStream(file.toPath())) { try (var output = Files.newOutputStream(file.toPath())) {
p.store(output, comment); p.store(output, comment);
} catch (IOException ioe) { } catch (IIOException ioe) {
throw new IOException("An IO error occurred while saving the Properties file: " + file, ioe); throw new IIOException("An IO error occurred while saving the Properties file: " + file, ioe);
}
}
/**
* Logs a warning.
*
* @param command the issuing command
* @param message the message to log
*/
static void warn(String command, String message) {
if (LOGGER.isLoggable(Level.WARNING)) {
LOGGER.warning('[' + command + "] " + message);
} }
} }
@ -257,20 +283,18 @@ public final class PropertyFileUtils {
* *
* @param command The command name * @param command The command name
* @param message the message log * @param message the message log
* @param e the related exception
* @param failOnWarning logs and throws exception if set to {@code true} * @param failOnWarning logs and throws exception if set to {@code true}
* @throws ExitStatusException if a {@link Level#SEVERE} exception occurs * @throws Exception the exception
*/ */
static void warn(String command, String message, boolean failOnWarning, boolean silent) @SuppressWarnings({"PMD.SignatureDeclareThrowsException"})
throws ExitStatusException { static void warn(String command, String message, Exception e, boolean failOnWarning) throws Exception {
LOGGER.warning("ahah");
if (failOnWarning) { if (failOnWarning) {
if (LOGGER.isLoggable(Level.SEVERE) && !silent) { LOGGER.log(Level.SEVERE, '[' + command + "] " + message, e);
LOGGER.log(Level.SEVERE, '[' + command + "] " + message); throw e;
}
throw new ExitStatusException(ExitStatusException.EXIT_FAILURE);
} else { } else {
if (LOGGER.isLoggable(Level.WARNING) && !silent) { warn(command, message);
LOGGER.warning('[' + command + "] " + message);
}
} }
} }
} }

View file

@ -18,7 +18,6 @@ package rife.bld.extension.propertyfile;
import org.junit.jupiter.api.Test; import org.junit.jupiter.api.Test;
import rife.bld.Project; import rife.bld.Project;
import rife.bld.operations.exceptions.ExitStatusException;
import java.io.File; import java.io.File;
import java.nio.file.Files; import java.nio.file.Files;
@ -27,7 +26,6 @@ import java.time.format.DateTimeFormatter;
import java.util.Properties; import java.util.Properties;
import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatCode;
import static rife.bld.extension.propertyfile.Calc.ADD; import static rife.bld.extension.propertyfile.Calc.ADD;
class PropertyFileOperationTest { class PropertyFileOperationTest {
@ -78,10 +76,4 @@ class PropertyFileOperationTest {
assertThat(p.getProperty("build.date")).as("dalete build.date").isNull(); assertThat(p.getProperty("build.date")).as("dalete build.date").isNull();
assertThat(p).as("version keys").containsKeys("version.major", "version.minor", "version.patch"); assertThat(p).as("version keys").containsKeys("version.major", "version.minor", "version.patch");
} }
@Test
void testExecuteNoProject() {
var op = new PropertyFileOperation();
assertThatCode(op::execute).isInstanceOf(ExitStatusException.class);
}
} }

View file

@ -17,19 +17,19 @@
package rife.bld.extension.propertyfile; package rife.bld.extension.propertyfile;
import org.junit.jupiter.api.Test; import org.junit.jupiter.api.Test;
import rife.bld.operations.exceptions.ExitStatusException;
import rife.tools.Localization; import rife.tools.Localization;
import java.io.File; import java.io.File;
import java.io.IOException;
import java.time.*; import java.time.*;
import java.util.Calendar; import java.util.Calendar;
import java.util.Date; import java.util.Date;
import java.util.Properties; import java.util.Properties;
import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.core.api.Assertions.assertThat; // NOPMD
import static org.assertj.core.api.Assertions.assertThatCode; import static org.assertj.core.api.Assertions.assertThatCode; // NOPMD
import static rife.bld.extension.propertyfile.Calc.ADD; import static rife.bld.extension.propertyfile.Calc.ADD; // NOPMD
import static rife.bld.extension.propertyfile.Calc.SUB; import static rife.bld.extension.propertyfile.Calc.SUB; // NOPMD
/** /**
* PropertyFileUtilsTest class * PropertyFileUtilsTest class
@ -37,7 +37,6 @@ import static rife.bld.extension.propertyfile.Calc.SUB;
* @author <a href="https://erik.thauvin.net/">Erik C. Thauvin</a> * @author <a href="https://erik.thauvin.net/">Erik C. Thauvin</a>
* @since 1.0 * @since 1.0
*/ */
@SuppressWarnings("PMD.AvoidDuplicateLiterals")
class PropertyFileUtilsTest { class PropertyFileUtilsTest {
final static int dayOfYear = LocalDate.now().getDayOfYear(); final static int dayOfYear = LocalDate.now().getDayOfYear();
final static Properties p = new Properties(); final static Properties p = new Properties();
@ -50,7 +49,7 @@ class PropertyFileUtilsTest {
public EntryDate newEntryDate() { public EntryDate newEntryDate() {
p.clear(); p.clear();
return new EntryDate("aDate").pattern("D"); return new EntryDate("adate").pattern("D");
} }
public EntryInt newEntryInt() { public EntryInt newEntryInt() {
@ -59,36 +58,40 @@ class PropertyFileUtilsTest {
} }
@Test @Test
void parseDateSub() { void parseDateSub() throws Exception {
var entryDate = newEntryDate().calc(SUB); var entryDate = newEntryDate();
PropertyFileUtils.processDate(p, entryDate.now()); entryDate.setCalc(SUB);
assertThat(p.getProperty(entryDate.key())).as("processDate(now-3)").isEqualTo(String.valueOf(dayOfYear - 1)); PropertyFileUtils.processDate(t, p, entryDate.now(), true);
assertThat(p.getProperty(entryDate.getKey())).as("processDate(now-3)").isEqualTo(String.valueOf(dayOfYear - 1));
entryDate.calc(v -> v - 2); entryDate.setCalc(v -> v - 2);
PropertyFileUtils.processDate(p, entryDate.now()); PropertyFileUtils.processDate(t, p, entryDate.now(), true);
assertThat(p.getProperty(entryDate.key())).as("processDate(now-2)").isEqualTo(String.valueOf(dayOfYear - 2)); assertThat(p.getProperty(entryDate.getKey())).as("processDate(now-2)").isEqualTo(String.valueOf(dayOfYear - 2));
entryDate.calc(SUB); entryDate.setCalc(SUB);
PropertyFileUtils.processDate(p, entryDate.set(new Date())); PropertyFileUtils.processDate(t, p, entryDate.set(new Date()), true);
assertThat(p.getProperty(entryDate.key())).as("processDate(date-1)").isEqualTo(String.valueOf(dayOfYear - 1)); assertThat(p.getProperty(entryDate.getKey())).as("processDate(date-1)").isEqualTo(String.valueOf(dayOfYear - 1));
entryDate.calc(v -> v - 2); entryDate.setCalc(v -> v - 2);
PropertyFileUtils.processDate(p, entryDate.set(Calendar.getInstance())); PropertyFileUtils.processDate(t, p, entryDate.set(Calendar.getInstance()), true);
assertThat(p.getProperty(entryDate.key())).as("processDate(cal-2)").isEqualTo(String.valueOf(dayOfYear - 2)); assertThat(p.getProperty(entryDate.getKey())).as("processDate(cal-2)").isEqualTo(String.valueOf(dayOfYear - 2));
entryDate.calc(v -> v - 3); entryDate.setCalc(v -> v - 3);
PropertyFileUtils.processDate(p, entryDate.set(LocalDate.now())); PropertyFileUtils.processDate(t, p, entryDate.set(LocalDate.now()),
assertThat(p.getProperty(entryDate.key())).as("processDate(LocalDate-3)").isEqualTo(String.valueOf(dayOfYear - 3)); true);
assertThat(p.getProperty(entryDate.getKey())).as("processDate(LocalDate-3)").isEqualTo(String.valueOf(dayOfYear - 3));
} }
@Test @Test
void parseIntSubTest() { void parseIntSubTest() throws Exception {
var entryInt = newEntryInt().calc(SUB).pattern("0000"); var entryInt = newEntryInt();
PropertyFileUtils.processInt(p, entryInt.defaultValue("0017")); entryInt.calc(SUB);
assertThat(p.getProperty(entryInt.key())).as("sub(0017)").isEqualTo("0016"); entryInt.setPattern("0000");
PropertyFileUtils.processInt(t, p, entryInt.defaultValue("0017"), true);
assertThat(p.getProperty(entryInt.getKey())).as("sub(0017)").isEqualTo("0016");
PropertyFileUtils.processInt(p, entryInt.set(16).calc(v -> v - 3)); PropertyFileUtils.processInt(t, p, entryInt.set(16).calc(v -> v - 3), true);
assertThat(p.getProperty(entryInt.key())).as("sub(16)-3").isEqualTo("0013"); assertThat(p.getProperty(entryInt.getKey())).as("sub(16)-3").isEqualTo("0013");
} }
@Test @Test
@ -97,118 +100,116 @@ class PropertyFileUtilsTest {
var entry = newEntry(); var entry = newEntry();
PropertyFileUtils.processString(p, entry.set(1)); PropertyFileUtils.processString(p, entry.set(1));
PropertyFileUtils.processString(p, entry.modify("-foo", String::concat)); PropertyFileUtils.processString(p, entry.modify("-foo", String::concat));
assertThat(p.getProperty(entry.key())).as(String.format("processString(%s, %s)", entry.key(), assertThat(p.getProperty(entry.getKey())).as(String.format("processString(%s, %s)", entry.getKey(),
entry.newValue())).isEqualTo("1-foo"); entry.getNewValue())).isEqualTo("1-foo");
} }
@Test @Test
void parseStringCap() { void parseStringCap() {
var entry = newEntry(); var entry = newEntry();
PropertyFileUtils.processString(p, entry.set(t).modify("", (v, s) -> v.toUpperCase(Localization.getLocale()))); PropertyFileUtils.processString(p, entry.set(t).modify("", (v, s) -> v.toUpperCase(Localization.getLocale())));
assertThat(p.getProperty(entry.key())).as("capitalize").isEqualTo(t.toUpperCase(Localization.getLocale())); assertThat(p.getProperty(entry.getKey())).as("capitalize").isEqualTo(t.toUpperCase(Localization.getLocale()));
} }
@Test @Test
void parseStringCat() { void parseStringCat() {
var entry = newEntry(); var entry = newEntry();
entry.set(t).modify("-foo", String::concat); entry.set(t).setModify("-foo", String::concat);
PropertyFileUtils.processString(p, entry); PropertyFileUtils.processString(p, entry);
assertThat(p.getProperty(entry.key())).as("replace").isEqualTo(t + "-foo"); assertThat(p.getProperty(entry.getKey())).as("replace").isEqualTo(t + "-foo");
} }
@Test
void parseStringFormat() {
var entry = new Entry("foo").set("%.2f").pattern(3.14159f);
PropertyFileUtils.processString(p, entry);
assertThat(p.getProperty(entry.key())).as("format").isEqualTo("3.14");
}
@Test @Test
void parseStringPrepend() { void parseStringPrepend() {
var entry = newEntry(); var entry = newEntry();
PropertyFileUtils.processString(p, entry.set(1)); PropertyFileUtils.processString(p, entry.set(1));
PropertyFileUtils.processString(p, entry.modify("foo-", (v, s) -> s + v)); PropertyFileUtils.processString(p, entry.modify("foo-", (v, s) -> s + v));
assertThat(p.getProperty(entry.key())).as(String.format("processString(%s, %s)", entry.key(), entry.newValue())) assertThat(p.getProperty(entry.getKey())).as(String.format("processString(%s, %s)", entry.getKey(), entry.getNewValue()))
.isEqualTo("foo-1"); .isEqualTo("foo-1");
} }
@Test @Test
void parseStringReplace() { void parseStringReplace() {
var entry = newEntry(); var entry = newEntry();
entry.set(t).modify("T", (v, s) -> v.replace("t", s)); entry.set(t).setModify("T", (v, s) -> v.replace("t", s));
PropertyFileUtils.processString(p, entry); PropertyFileUtils.processString(p, entry);
assertThat(p.getProperty(entry.key())).as("replace(t -> T)").isEqualTo("TesT"); assertThat(p.getProperty(entry.getKey())).as("replace(t -> T)").isEqualTo("TesT");
} }
@Test @Test
void parseStringSub() { void parseStringSub() {
var entry = newEntry(); var entry = newEntry();
PropertyFileUtils.processString(p, entry.set(t).modify((v, s) -> v.substring(1))); PropertyFileUtils.processString(p, entry.set(t).modify((v, s) -> v.substring(1)));
assertThat(p.getProperty(entry.key())).as("substring(1)").isEqualTo(t.substring(1)); assertThat(p.getProperty(entry.getKey())).as("substring(1)").isEqualTo(t.substring(1));
} }
@Test @Test
void parseTimeTest() { void parseTimeTest() throws Exception {
var entry = new EntryDate("time").pattern("m"); var entry = new EntryDate("time").pattern("m");
var time = LocalTime.now(); var time = LocalTime.now();
entry.calc(ADD); entry.setCalc(ADD);
PropertyFileUtils.processDate(p, entry.set(time).unit(EntryDate.Units.MINUTE)); PropertyFileUtils.processDate(t, p, entry.set(time).unit(EntryDate.Units.MINUTE), true);
assertThat(p.getProperty(entry.key())).as("processDate(now+1)") assertThat(p.getProperty(entry.getKey())).as("processDate(now+1)")
.isEqualTo(String.valueOf(time.plusMinutes(1).getMinute())); .isEqualTo(String.valueOf(time.plusMinutes(1).getMinute()));
entry.calc(SUB); entry.setCalc(SUB);
PropertyFileUtils.processDate(p, entry.set(time).unit(EntryDate.Units.HOUR).pattern("H")); PropertyFileUtils.processDate(t, p, entry.set(time).unit(EntryDate.Units.HOUR).pattern("H"), true);
assertThat(p.getProperty(entry.key())).as("processDate(now+1)") assertThat(p.getProperty(entry.getKey())).as("processDate(now+1)")
.isEqualTo(String.valueOf(time.minusHours(1).getHour())); .isEqualTo(String.valueOf(time.minusHours(1).getHour()));
} }
@Test @Test
void processDateAddTest() { void processDateAddTest() throws Exception {
var entryDate = newEntryDate(); var entryDate = newEntryDate();
entryDate.calc(ADD); entryDate.setCalc(ADD);
PropertyFileUtils.processDate(p, entryDate.now()); PropertyFileUtils.processDate(t, p, entryDate.now(), true);
assertThat(p.getProperty(entryDate.key())).as("processDate(now+1)").isEqualTo(String.valueOf(dayOfYear + 1)); assertThat(p.getProperty(entryDate.getKey())).as("processDate(now+1)").isEqualTo(String.valueOf(dayOfYear + 1));
PropertyFileUtils.processDate(p, entryDate.now().calc(v -> v + 3)); PropertyFileUtils.processDate(t, p, entryDate.now().calc(v -> v + 3), true);
assertThat(p.getProperty(entryDate.key())).as("processDate(now+3)").isEqualTo(String.valueOf(dayOfYear + 3)); assertThat(p.getProperty(entryDate.getKey())).as("processDate(now+3)").isEqualTo(String.valueOf(dayOfYear + 3));
entryDate.calc(ADD); entryDate.setCalc(ADD);
PropertyFileUtils.processDate(p, entryDate.set(ZonedDateTime.now())); PropertyFileUtils.processDate(t, p, entryDate.set(ZonedDateTime.now()), true);
assertThat(p.getProperty(entryDate.key())).as("processDate(ZonedDateTime+1)") assertThat(p.getProperty(entryDate.getKey())).as("processDate(ZonedDateTime+1)")
.isEqualTo(String.valueOf(dayOfYear + 1)); .isEqualTo(String.valueOf(dayOfYear + 1));
PropertyFileUtils.processDate(p, entryDate.set(Instant.now()).calc(v -> v + 2)); PropertyFileUtils.processDate(t, p, entryDate.set(Instant.now()).calc(v -> v + 2), true);
assertThat(p.getProperty(entryDate.key())).as("processDate(Instant+2)").isEqualTo(String.valueOf(dayOfYear + 2)); assertThat(p.getProperty(entryDate.getKey())).as("processDate(Instant+2)").isEqualTo(String.valueOf(dayOfYear + 2));
entryDate.calc(v -> v + 3); entryDate.setCalc(v -> v + 3);
PropertyFileUtils.processDate(p, entryDate.set(LocalDateTime.now())); PropertyFileUtils.processDate(t, p, entryDate.set(LocalDateTime.now()), true);
assertThat(p.getProperty(entryDate.key())).as("processDate(LocalDteTime+2)").isEqualTo(String.valueOf(dayOfYear + 3)); assertThat(p.getProperty(entryDate.getKey())).as("processDate(LocalDteTime+2)").isEqualTo(String.valueOf(dayOfYear + 3));
} }
@Test @Test
void processIntAddTest() { void processIntAddTest() throws Exception {
var entryInt = newEntryInt().calc(ADD).defaultValue("-1"); var entryInt = newEntryInt();
PropertyFileUtils.processInt(p, entryInt); entryInt.calc(ADD);
assertThat(p.getProperty(entryInt.key())).as("add(-1)").isEqualTo("0"); entryInt.setDefaultValue("-1");
PropertyFileUtils.processInt(t, p, entryInt, true);
assertThat(p.getProperty(entryInt.getKey())).as("add(-1)").isEqualTo("0");
entryInt.key("anInt").defaultValue("0"); entryInt.setKey("anint");
PropertyFileUtils.processInt(p, entryInt); entryInt.setDefaultValue("0");
assertThat(p.getProperty(entryInt.key())).as("add(0)").isEqualTo("1"); PropertyFileUtils.processInt(t, p, entryInt, true);
PropertyFileUtils.processInt(p, entryInt); assertThat(p.getProperty(entryInt.getKey())).as("add(0)").isEqualTo("1");
assertThat(p.getProperty(entryInt.key())).as("add(1)").isEqualTo("2"); PropertyFileUtils.processInt(t, p, entryInt, true);
assertThat(p.getProperty(entryInt.getKey())).as("add(1)").isEqualTo("2");
entryInt.key("formatted.int").defaultValue("0013").pattern("0000"); entryInt.setKey("formatted.int");
PropertyFileUtils.processInt(p, entryInt); entryInt.setDefaultValue("0013");
assertThat(p.getProperty(entryInt.key())).as("add(0013)").isEqualTo("0014"); entryInt.setPattern("0000");
PropertyFileUtils.processInt(p, entryInt); PropertyFileUtils.processInt(t, p, entryInt, true);
assertThat(p.getProperty(entryInt.key())).as("add(0014)").isEqualTo("0015"); assertThat(p.getProperty(entryInt.getKey())).as("add(0013)").isEqualTo("0014");
PropertyFileUtils.processInt(t, p, entryInt, true);
assertThat(p.getProperty(entryInt.getKey())).as("add(0014)").isEqualTo("0015");
entryInt.calc(v -> v + 2); entryInt.calc(v -> v + 2);
PropertyFileUtils.processInt(p, entryInt); PropertyFileUtils.processInt(t, p, entryInt, true);
assertThat(p.getProperty(entryInt.key())).as("add(0015)+2").isEqualTo("0017"); assertThat(p.getProperty(entryInt.getKey())).as("add(0015)+2").isEqualTo("0017");
} }
@Test @Test
@ -216,14 +217,14 @@ class PropertyFileUtilsTest {
var entry = newEntry(); var entry = newEntry();
PropertyFileUtils.processString(p, entry); PropertyFileUtils.processString(p, entry);
assertThat(entry.newValue()).as(String.format("processString(%s, %s)", entry.key(), entry.newValue())) assertThat(entry.getNewValue()).as(String.format("processString(%s, %s)", entry.getKey(), entry.getNewValue()))
.isEqualTo(p.getProperty(entry.key())); .isEqualTo(p.getProperty(entry.getKey()));
entry.key("version.minor"); entry.setKey("version.minor");
PropertyFileUtils.processString(p, entry.set(0)); PropertyFileUtils.processString(p, entry.set(0));
assertThat(entry.newValue().toString()).as(String.format("processString(%s, %s)", entry.key(), entry.newValue())) assertThat(entry.getNewValue().toString()).as(String.format("processString(%s, %s)", entry.getKey(), entry.getNewValue()))
.isEqualTo(p.getProperty(entry.key())); .isEqualTo(p.getProperty(entry.getKey()));
} }
@Test @Test
@ -238,22 +239,13 @@ class PropertyFileUtilsTest {
assertThatCode(() -> PropertyFileUtils.saveProperties(tmp, "Generated file - do not modify!", p)) assertThatCode(() -> PropertyFileUtils.saveProperties(tmp, "Generated file - do not modify!", p))
.as("save properties").doesNotThrowAnyException(); .as("save properties").doesNotThrowAnyException();
assertThat(PropertyFileUtils.loadProperties(t, tmp, p, false)).as("load properties").isTrue(); assertThat(PropertyFileUtils.loadProperties(t, tmp, p)).as("load properties").isTrue();
assertThat(p.getProperty(test)).as("read property").isEqualTo(test); assertThat(p.getProperty(test)).as("read property").isEqualTo(test);
tmp.deleteOnExit(); tmp.deleteOnExit();
} }
@Test
void testChangeKey() {
var entry = new Entry("foo").key("bar");
assertThat(entry.key()).isEqualTo("bar");
entry.key("foo");
assertThat(entry.key()).isEqualTo("foo");
}
@Test @Test
void testCurrentValue() { void testCurrentValue() {
var value = "value"; var value = "value";
@ -269,9 +261,9 @@ class PropertyFileUtilsTest {
@Test @Test
void testWarn() { void testWarn() {
assertThatCode(() -> PropertyFileUtils.warn("command", "message", true, false)) assertThatCode(() -> PropertyFileUtils.warn("command", "message", new IOException(t), true))
.isInstanceOf(ExitStatusException.class); .hasMessage(t).isInstanceOf(IOException.class);
assertThatCode(() -> PropertyFileUtils.warn("command", t, false, false)) assertThatCode(() -> PropertyFileUtils.warn("command", t, new Exception(t), false))
.as("failOnWarning = false").doesNotThrowAnyException(); .as("failOnWarning = false").doesNotThrowAnyException();
} }
} }