Skip to content

Commit 890a1e3

Browse files
committed
Add README.md, add more tests, minor tweaks to behaviour to match desired test output
1 parent dec2d3c commit 890a1e3

File tree

3 files changed

+90
-4
lines changed

3 files changed

+90
-4
lines changed

.github/workflows/main.yml

+49-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,56 @@
11
on: [push]
22

33
jobs:
4-
plugin_json:
4+
empty_data:
55
runs-on: ubuntu-latest
6-
name: Test merging some JSON files
6+
name: Test for no output file with no input data
7+
steps:
8+
- name: Checkout
9+
uses: actions/checkout@v4
10+
11+
- name: Test
12+
uses: ./
13+
with:
14+
out-file: output.json
15+
16+
- name: xxx
17+
shell: bash
18+
run: |
19+
if [ -f 'output.json' ]; then
20+
echo "There is still an output file, this is incorrect"
21+
exit 1
22+
else
23+
echo "No output file"
24+
fi
25+
file_to_file:
26+
runs-on: ubuntu-latest
27+
name: Test just copying the file
28+
steps:
29+
- name: Checkout
30+
uses: actions/checkout@v4
31+
32+
- name: Test
33+
uses: ./
34+
with:
35+
in-file: test/file.json
36+
out-file: output_single.json
37+
38+
- name: Print output
39+
shell: bash
40+
run: |
41+
wc -c < output_single.json
42+
cat output_single.json
43+
echo
44+
45+
- name: Upload artifact
46+
uses: actions/upload-artifact@v4
47+
with:
48+
name: output
49+
path: output_single.json
50+
51+
json_merging:
52+
runs-on: ubuntu-latest
53+
name: Test merging logic
754
steps:
855
- name: Checkout
956
uses: actions/checkout@v4

README.md

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Voxelite JSON Merger
2+
3+
GitHub Action to merge [Voxelite](https://github.com/voxelite)'s `block.json` (main JSON) with all JSONs in `block` directory.
4+
The same can be done for items, entities...
5+
6+
## Inputs
7+
8+
### `in-file`
9+
10+
Path to your `block.json` (or equivalent).
11+
12+
This is your main file with data.
13+
Inside the file you should have a JSON Object with keys for codenames and their values an object with all the configuration.
14+
15+
### `in-directory`
16+
17+
Path to your directory containing all object files.
18+
Inside each object (like a block) is represented by a single JSON file.
19+
Name of the file is used as the object's name and inside is a JSON Object with all the configuration.
20+
21+
### `out-file`
22+
23+
**Required**
24+
25+
File to write the output JSON into.
26+
27+
## Example usage
28+
29+
```yaml
30+
- name: block.json merging
31+
uses: voxelite/json-merge@v1
32+
with:
33+
in-file: block.json
34+
in-directory: block
35+
out-file: out_block.json
36+
```
37+
38+
For object format (block, item, entity...) look into official documentation.

index.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ try
1414

1515
let outputJson = JSON.constructor();
1616

17-
if(inFile !== undefined)
17+
if(typeof inFile === "string" && inFile !== '')
1818
{
1919
const fileData = fs.readFileSync(inFile, 'utf8');
2020
outputJson = JSON.parse(fileData);
2121
}
2222

23-
if(inDirectory !== undefined)
23+
if(typeof inDirectory === "string" && inDirectory !== '')
2424
{
2525
fs.readdirSync(inDirectory).forEach(filename => {
2626
if(!filename.endsWith(".json"))
@@ -38,6 +38,7 @@ try
3838
});
3939
}
4040

41+
if(outputJson.length > 0)
4142
{
4243
fs.writeFileSync(
4344
outFile,

0 commit comments

Comments
 (0)