Skip to content

Commit 18dbafe

Browse files
committed
feat: generate catalog and registry at the same time
1 parent 87d35d8 commit 18dbafe

File tree

8 files changed

+83
-30
lines changed

8 files changed

+83
-30
lines changed

CONTRIBUTING.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,7 @@ go-jsonschema --capitalization URL --capitalization OSS -p k6registry --only-mod
5353
The example registry can be found in [example.yaml] file, the documentation ([registry.md], [README.md]) must be updated after modification.
5454

5555
```bash
56-
go run ./cmd/k6registry --lint -o docs/example.json docs/example.yaml
57-
go run ./cmd/k6registry --lint --catalog -o docs/example-catalog.json docs/example.yaml
56+
go run ./cmd/k6registry --lint -o docs/example.json --catalog docs/example-catalog.json docs/example.yaml
5857
go run ./cmd/k6registry --lint -q --api docs/example-api docs/example.yaml
5958
tree -n --noreport --filesfirst -o docs/example-api.txt docs/example-api
6059
mdcode update docs/registry.md
@@ -69,8 +68,7 @@ mdcode update README.md
6968

7069
```bash
7170
export ORIGIN=https://registry.k6.io/registry.json
72-
go run ./cmd/k6registry --lint -o docs/custom.json --origin $ORIGIN docs/custom.yaml
73-
go run ./cmd/k6registry --lint --catalog -o docs/custom-catalog.json --origin $ORIGIN docs/custom.yaml
71+
go run ./cmd/k6registry --lint --catalog docs/custom-catalog.json -o docs/custom.json --origin $ORIGIN docs/custom.yaml
7472
```
7573

7674
## readme - Update README.md

README.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@ quiet | no | `false` | no output, only validation
477477
loose | no | `false` | skip JSON schema validation
478478
lint | no | `false` | enable built-in linter
479479
compact| no | `false` | compact instead of pretty-printed output
480-
catalog| no | `false` | generate catalog instead of registry
480+
catalog| no | | generate catalog to the specified file
481481
ref | no | | reference output URL for change detection
482482
origin | no | | external registry URL for default values
483483

@@ -535,18 +535,18 @@ k6registry [flags] [source-file]
535535
### Flags
536536
537537
```
538-
-o, --out string write output to file instead of stdout
539-
--api string write outputs to directory instead of stdout
540-
--origin string external registry URL for default values
541-
--test strings test api path(s) (example: /registry.json,/catalog.json)
542-
-q, --quiet no output, only validation
543-
--loose skip JSON schema validation
544-
--lint enable built-in linter
545-
-c, --compact compact instead of pretty-printed output
546-
--catalog generate catalog instead of registry
547-
-v, --verbose verbose logging
548-
-V, --version print version
549-
-h, --help help for k6registry
538+
-o, --out string write output to file instead of stdout
539+
--api string write outputs to directory instead of stdout
540+
--origin string external registry URL for default values
541+
--test strings test api path(s) (example: /registry.json,/catalog.json)
542+
-q, --quiet no output, only validation
543+
--loose skip JSON schema validation
544+
--lint enable built-in linter
545+
-c, --compact compact instead of pretty-printed output
546+
--catalog string generate catalog to the specified file
547+
-v, --verbose verbose logging
548+
-V, --version print version
549+
-h, --help help for k6registry
550550
```
551551
552552
<!-- #endregion cli -->

action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ inputs:
4040
required: false
4141

4242
catalog:
43-
description: generate catalog instead of registry
43+
description: generate catalog to the specified file
4444
required: false
4545

4646
origin:

cmd/cmd.go

+36-6
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import (
99
"io/fs"
1010
"log/slog"
1111
"os"
12+
"path/filepath"
1213

1314
"github.com/grafana/k6registry"
1415
"github.com/spf13/cobra"
@@ -20,7 +21,7 @@ var help string
2021
type options struct {
2122
out string
2223
compact bool
23-
catalog bool
24+
catalog string
2425
quiet bool
2526
verbose bool
2627
loose bool
@@ -77,9 +78,11 @@ func New(levelVar *slog.LevelVar) (*cobra.Command, error) {
7778
flags.BoolVar(&opts.loose, "loose", false, "skip JSON schema validation")
7879
flags.BoolVar(&opts.lint, "lint", false, "enable built-in linter")
7980
flags.BoolVarP(&opts.compact, "compact", "c", false, "compact instead of pretty-printed output")
80-
flags.BoolVar(&opts.catalog, "catalog", false, "generate catalog instead of registry")
81+
flags.StringVar(&opts.catalog, "catalog", "", "generate catalog to the specified file")
8182
flags.BoolVarP(&opts.verbose, "verbose", "v", false, "verbose logging")
8283
root.MarkFlagsMutuallyExclusive("compact", "quiet")
84+
root.MarkFlagsMutuallyExclusive("api", "out")
85+
root.MarkFlagsMutuallyExclusive("api", "catalog")
8386

8487
flags.BoolP("version", "V", false, "print version")
8588

@@ -151,25 +154,52 @@ func run(ctx context.Context, args []string, opts *options) (result error) {
151154
return testAPI(opts.test, opts.api)
152155
}
153156

157+
if len(opts.catalog) > 0 {
158+
if err := writeCatalog(registry, opts.catalog, opts.compact); err != nil {
159+
return err
160+
}
161+
}
162+
154163
if opts.quiet {
155164
return nil
156165
}
157166

158-
return writeOutput(registry, output, opts)
167+
return writeOutput(registry, output, opts.compact, false)
168+
}
169+
170+
//nolint:forbidigo
171+
func writeCatalog(registry k6registry.Registry, filename string, compact bool) (result error) {
172+
file, err := os.Create(filepath.Clean(filename))
173+
if err != nil {
174+
return err
175+
}
176+
177+
defer func() {
178+
err := file.Close()
179+
if result == nil && err != nil {
180+
result = err
181+
}
182+
}()
183+
184+
if err := writeOutput(registry, file, compact, true); err != nil {
185+
result = err
186+
}
187+
188+
return
159189
}
160190

161-
func writeOutput(registry k6registry.Registry, output io.Writer, opts *options) error {
191+
func writeOutput(registry k6registry.Registry, output io.Writer, compact, catalog bool) error {
162192
encoder := json.NewEncoder(output)
163193

164-
if !opts.compact {
194+
if !compact {
165195
encoder.SetIndent("", " ")
166196
}
167197

168198
encoder.SetEscapeHTML(false)
169199

170200
var source interface{} = registry
171201

172-
if opts.catalog {
202+
if catalog {
173203
source = k6registry.RegistryToCatalog(registry)
174204
}
175205

cmd/k6registry/main.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ func getArgs() []string {
9292
args = append(args, "--compact")
9393
}
9494

95-
if getenv("INPUT_CATALOG", "false") == "true" {
96-
args = append(args, "--catalog")
95+
if catalog := getenv("INPUT_CATALOG", ""); len(catalog) != 0 {
96+
args = append(args, "--catalog", catalog)
9797
}
9898

9999
if api := getenv("INPUT_API", ""); len(api) != 0 {

docs/custom-catalog.json

+10-2
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,10 @@
7171
"categories": [
7272
"data"
7373
],
74+
"compliance": {
75+
"grade": "A",
76+
"level": 100
77+
},
7478
"constraints": ">=v0.4.0",
7579
"description": "Generate random fake data",
7680
"imports": [
@@ -88,7 +92,7 @@
8892
"name": "xk6-faker",
8993
"owner": "grafana",
9094
"public": true,
91-
"stars": 54,
95+
"stars": 55,
9296
"timestamp": 1725533453,
9397
"topics": [
9498
"xk6"
@@ -132,6 +136,10 @@
132136
"categories": [
133137
"data"
134138
],
139+
"compliance": {
140+
"grade": "A",
141+
"level": 100
142+
},
135143
"description": "Load-test SQL Servers",
136144
"imports": [
137145
"k6/x/sql"
@@ -148,7 +156,7 @@
148156
"name": "xk6-sql",
149157
"owner": "grafana",
150158
"public": true,
151-
"stars": 109,
159+
"stars": 110,
152160
"timestamp": 1725979901,
153161
"topics": [
154162
"k6",

docs/custom.json

+10-2
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,10 @@
5858
"categories": [
5959
"data"
6060
],
61+
"compliance": {
62+
"grade": "A",
63+
"level": 100
64+
},
6165
"constraints": ">=v0.4.0",
6266
"description": "Generate random fake data",
6367
"imports": [
@@ -75,7 +79,7 @@
7579
"name": "xk6-faker",
7680
"owner": "grafana",
7781
"public": true,
78-
"stars": 54,
82+
"stars": 55,
7983
"timestamp": 1725533453,
8084
"topics": [
8185
"xk6"
@@ -91,6 +95,10 @@
9195
"categories": [
9296
"data"
9397
],
98+
"compliance": {
99+
"grade": "A",
100+
"level": 100
101+
},
94102
"description": "Load-test SQL Servers",
95103
"imports": [
96104
"k6/x/sql"
@@ -107,7 +115,7 @@
107115
"name": "xk6-sql",
108116
"owner": "grafana",
109117
"public": true,
110-
"stars": 109,
118+
"stars": 110,
111119
"timestamp": 1725979901,
112120
"topics": [
113121
"k6",

releases/v0.1.29.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
k6registry `v0.1.29` is here 🎉!
2+
3+
This is an internal maintenance release.
4+
5+
**Generate catalog and registry at the same time**
6+
7+
During customization, it is often necessary to generate both catalog and registry. These two outputs can now be generated simultaneously, with a single `k6registry` run.
8+
9+
The `--catalog` flag now specifies the location of the generated catalog.

0 commit comments

Comments
 (0)