🔀 Merge branch 'rel/0.0.2' into stable
This commit is contained in:
commit
40b2dd5793
21 changed files with 720 additions and 48 deletions
|
|
@ -1,5 +1,10 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [0.0.2] - 2024-03-09
|
||||||
|
|
||||||
|
- ✨ Use plain formatter to output entry from drop
|
||||||
|
- ✨ Add newline to file when needed
|
||||||
|
|
||||||
## [0.0.1] - 2024-03-02
|
## [0.0.1] - 2024-03-02
|
||||||
|
|
||||||
🎉 Initial release.
|
🎉 Initial release.
|
||||||
|
|
|
||||||
156
README.md
Normal file
156
README.md
Normal file
|
|
@ -0,0 +1,156 @@
|
||||||
|
# my-log
|
||||||
|
|
||||||
|
`my-log` is a tool for generating and parsing log files for whatever you want. This is early in development. Check our Roadmap before for what's working.
|
||||||
|
|
||||||
|
I originally wrote [DropLogger](https://github.com/goodevilgenius/droplogger) to serve this purpose. DropLogger was originally designed to work primarily with IFTTT and Dropbox. Due to IFTTT changing their service significantly since I originally signed up, I no longer use it. Even without IFTTT, DropLogger is a great tool.
|
||||||
|
|
||||||
|
So, why did I decide to completely rewrite it? Mainly because DropLogger is written in Python. While Python is a great language, I haven't used it seriously for many years, and I didn't find a whole lot of motivation to add new features to DropLogger, due to this. But I've been working in go for the past six months, and have kind of fell in love with the language. I'd been considering a rewrite of DropLogger for a while, so I decided to help myself get more practice in go by rewriting DropLogger in it.
|
||||||
|
|
||||||
|
So, how does this work?
|
||||||
|
|
||||||
|
Currently, it mostly doesn't. `my-log` is still in its early stages, and DropLogger is still needed for most of the functionality. So, how will it work?
|
||||||
|
|
||||||
|
## Log files
|
||||||
|
|
||||||
|
We start with the individual log files. These were designed to be very flexible so that they could be written using a number of different tools. Originally, IFTTT recipes were created that would write to files in Dropbox, but this could be adapted to a number of other automation tools to automatically write as things happen.
|
||||||
|
|
||||||
|
What things? Well, maybe you use Tasker to trigger an action when you get home. You might want to keep a log of whenever you arrive at your house. Or, maybe you use [Last.FM](https://www.last.fm/home) to keep track of your music listening habits, and you want to log whenever you listen to a music track. You could create a Zap in Zapier that responds to new scrobbles on Last.FM, and adds those scrobbles to a file.
|
||||||
|
|
||||||
|
### Log format
|
||||||
|
|
||||||
|
As I mentioned, the format is intended to be very easy to write. Here's a sample:
|
||||||
|
|
||||||
|
```
|
||||||
|
@begin January 12, 2024 at 2:34PM - Title
|
||||||
|
@key value
|
||||||
|
@longKey this entry is long, and
|
||||||
|
spans multiple lines
|
||||||
|
@number 4
|
||||||
|
@bool true
|
||||||
|
@end
|
||||||
|
```
|
||||||
|
|
||||||
|
So, each entry starts with `@begin` and ends with `@end`. It must have a date and a title. It may also have additional data which is indicated by an `@` at the beginning of the line. If I were to convert this to JSON (which `my-log` can do for you), it would look like:
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"title": "Title",
|
||||||
|
"date": "2024-01-12T14:34:00Z",
|
||||||
|
"key": "value",
|
||||||
|
"longKey": "this entry is long, and\nspans multiple lines",
|
||||||
|
"number": 4,
|
||||||
|
"bool": true
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
A couple things to note:
|
||||||
|
- When outputting JSON, the date is converted to ISO-8601 format. The timezone used (if none was given in the original log) is your own local time.
|
||||||
|
- The newline in the `longKey` was preserved
|
||||||
|
- Different types are recognized and parsed correctly. It supports the following types:
|
||||||
|
+ string (default)
|
||||||
|
+ numbers
|
||||||
|
+ boolean values (true or false)
|
||||||
|
+ dates and times
|
||||||
|
+ A null value (the string "null", "nil", "none", or "~")
|
||||||
|
+ A raw JSON object/array
|
||||||
|
|
||||||
|
Since the extra fields are optional, the simplest log entry can be on a single line. For example, you might have a log file called `notes.txt` with this:
|
||||||
|
|
||||||
|
```
|
||||||
|
@begin February 3, 2015 at 01:33PM - Remember to call Mom @end
|
||||||
|
@begin February 4, 2015 at 07:45AM - Breakfast today was great! @end
|
||||||
|
```
|
||||||
|
|
||||||
|
As JSON, that would be:
|
||||||
|
|
||||||
|
```json
|
||||||
|
[{
|
||||||
|
"title":"Rember to call Mom",
|
||||||
|
"date":"2015-02-03T13:33:00Z"
|
||||||
|
},{
|
||||||
|
"title":"Breakfase today was great!",
|
||||||
|
"date":"2015-02-04T07:45:00Z"
|
||||||
|
}]
|
||||||
|
```
|
||||||
|
|
||||||
|
### Adding log entries
|
||||||
|
|
||||||
|
As was previously noted, the idea is that you can figure out the best way for you to add to the log file. But, `my-log` also comes with a command to add them from the command line. Run `my-log drop --help` for instructions on how to use it. But, here's a few examples:
|
||||||
|
|
||||||
|
```shell
|
||||||
|
my-log drop notes "Hello"
|
||||||
|
# Adds "@begin <date> - Hello @end" to notes.txt file
|
||||||
|
|
||||||
|
my-log drop -d "yesterday" calls "Talked with Jeremy" -f phone_number=+1-555-867-5309
|
||||||
|
# If today is January 2, 2024, adds the follow entry to calls.txt
|
||||||
|
# @begin January 1, 2024 at 12:00:00AM UTC - Talked with Jeremy
|
||||||
|
# @phone_number +1-555-867-5309 @end
|
||||||
|
|
||||||
|
my-log drop -d "1999-12-31T23:59:59Z" events "The end of the world" -f notes="As we know it" -j '{"artist":"R.E.M","slaps":true}'
|
||||||
|
# Adds the following entry to events.txt
|
||||||
|
# @begin December 31, 1999 at 11:59:59PM UTC - The end of the world
|
||||||
|
# @notes As we know it
|
||||||
|
# @artist R.E.M
|
||||||
|
# @slaps true @end
|
||||||
|
```
|
||||||
|
|
||||||
|
## Output
|
||||||
|
|
||||||
|
This is a work in progress. More info coming soon. Short version is, we want to be able to output to multiple formats in multiple places.
|
||||||
|
|
||||||
|
Check [DropLogger's documentation](https://github.com/goodevilgenius/droplogger?tab=readme-ov-file#output) for info on how we want to make it work.
|
||||||
|
|
||||||
|
## Configuration
|
||||||
|
|
||||||
|
We use a TOML file for configuration. The default location on Linux is ~/.config/my-log/config.toml. You can find the exact location by doing `my-log -h` and looking at the help for the `--config` flag. Running `my-log config` will save the default config file to the default location. The file is intended to be edited by hand. There is no mechanism within the program to modify the file, aside from saving the default one.
|
||||||
|
|
||||||
|
The default one has comments to help you out, but here's the options:
|
||||||
|
|
||||||
|
### `[input]`
|
||||||
|
|
||||||
|
- `path`: The path to where the logs are located. This is usually ~/my-log, but if you want to store it in Dropbox, you might want it to be ~/Dropbox/my-log
|
||||||
|
- `ext`: The file extension for log files. This is usually txt, which makes it easier to work with multiple tools, but you can change it to log, or my-log, if you want. If you set it to an empty string, no extension will be used, which also means that when parsing the log files, it will look at all files in the folder.
|
||||||
|
- `recurse`: Whether to look in sub-folders.
|
||||||
|
|
||||||
|
### `[output.which-one]`
|
||||||
|
|
||||||
|
Each separate output has its own set of configuration. So, replace `which-one` with the output name.
|
||||||
|
|
||||||
|
- `enabled`: if set to false, will skip that output when running.
|
||||||
|
- `config`: This is an output-specific set of settings
|
||||||
|
|
||||||
|
#### `[output.stdout.config]`
|
||||||
|
|
||||||
|
*This section may change in the near future. We're considering supporting multiple formats.*
|
||||||
|
|
||||||
|
- `formatter`: Which formatter to use when outputting data. This value is used by `my-log drop` to output the new entry.
|
||||||
|
|
||||||
|
### `[formatters]`
|
||||||
|
|
||||||
|
Some formatters may have custom configuration.
|
||||||
|
|
||||||
|
#### `[formatters.json]`
|
||||||
|
|
||||||
|
- `pretty_print`: If true, JSON output will be pretty printed. If false, it will be printed to a single line.
|
||||||
|
|
||||||
|
## Roadmap
|
||||||
|
|
||||||
|
- [x] `drop` command. This is functional, and supports all the features of `drop-a-log`
|
||||||
|
+ [x] Don't add an extra blank line before new entries
|
||||||
|
+ [x] Add a new line at the end
|
||||||
|
- [ ] Output log entries
|
||||||
|
+ [ ] A single date
|
||||||
|
+ [ ] a specific period of time
|
||||||
|
+ [ ] filter to specific logs
|
||||||
|
+ [ ] stdout
|
||||||
|
- [x] plain text
|
||||||
|
- [ ] JSON
|
||||||
|
- [ ] YAML
|
||||||
|
- [ ] Other formats? Submit an issue!
|
||||||
|
+ [ ] file output
|
||||||
|
- [ ] Any format that stdout supports
|
||||||
|
- [ ] Multiple formats at once
|
||||||
|
- [ ] RSS
|
||||||
|
- [ ] ATOM
|
||||||
|
+ [ ] sqlite database
|
||||||
|
- [ ] Maybe: plug-in system to add formats or output destinations
|
||||||
11
cmd/drop.go
11
cmd/drop.go
|
|
@ -22,6 +22,7 @@ import (
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"codeberg.org/danjones000/my-log/files"
|
"codeberg.org/danjones000/my-log/files"
|
||||||
|
"codeberg.org/danjones000/my-log/formatters"
|
||||||
"codeberg.org/danjones000/my-log/models"
|
"codeberg.org/danjones000/my-log/models"
|
||||||
"codeberg.org/danjones000/my-log/tools"
|
"codeberg.org/danjones000/my-log/tools"
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
|
|
@ -58,11 +59,17 @@ var dropCmd = &cobra.Command{
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
by, err := e.MarshalText()
|
|
||||||
|
form, err := formatters.Preferred()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
fmt.Fprintf(cmd.OutOrStdout(), "%s\n", by)
|
out, err := form.Log(l)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
fmt.Fprintf(cmd.OutOrStdout(), "%s\n", out)
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -50,7 +50,7 @@ func init() {
|
||||||
// will be global for your application.
|
// will be global for your application.
|
||||||
|
|
||||||
rootCmd.PersistentFlags().StringVarP(&config.ConfigPath, "config", "c", config.ConfigPath, "config file")
|
rootCmd.PersistentFlags().StringVarP(&config.ConfigPath, "config", "c", config.ConfigPath, "config file")
|
||||||
rootCmd.PersistentFlags().StringToStringVarP(&config.Overrides, "config-value", "v", config.Overrides, "Override config values. Use dot syntax to specify key. E.g. -v output.stdout.config.json=true")
|
rootCmd.PersistentFlags().StringToStringVarP(&config.Overrides, "config-value", "v", config.Overrides, "Override config values. Use dot syntax to specify key. E.g. -v output.stdout.config.formatter=json")
|
||||||
|
|
||||||
// Cobra also supports local flags, which will only run
|
// Cobra also supports local flags, which will only run
|
||||||
// when this action is called directly.
|
// when this action is called directly.
|
||||||
|
|
|
||||||
|
|
@ -27,8 +27,14 @@ dotFolder = true
|
||||||
[output.stdout]
|
[output.stdout]
|
||||||
enabled = true
|
enabled = true
|
||||||
[output.stdout.config]
|
[output.stdout.config]
|
||||||
# Whether to output as JSON. Maybe useful to pipe elsewhere.
|
# Formatter to use when outputting to stdout
|
||||||
json = false
|
formatter = "plain"
|
||||||
|
|
||||||
|
[formatters]
|
||||||
|
|
||||||
|
[formatters.json]
|
||||||
|
# Set to true to pretty print JSON output
|
||||||
|
pretty_print = false
|
||||||
|
|
||||||
`
|
`
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -32,6 +32,7 @@ func Load() (Config, error) {
|
||||||
}
|
}
|
||||||
env.Parse(&c)
|
env.Parse(&c)
|
||||||
c.Outputs["stdout"] = loadStdout(c.Outputs["stdout"])
|
c.Outputs["stdout"] = loadStdout(c.Outputs["stdout"])
|
||||||
|
c.Formatters["json"] = loadJsonFormat(c.Formatters["json"])
|
||||||
|
|
||||||
l := ""
|
l := ""
|
||||||
for k, v := range Overrides {
|
for k, v := range Overrides {
|
||||||
|
|
@ -77,3 +78,21 @@ func (oo Outputs) Stdout() (s Stdout, enabled bool) {
|
||||||
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func loadJsonFormat(c map[string]any) map[string]any {
|
||||||
|
jf := JsonFormat{}
|
||||||
|
mapst.Decode(c, &jf)
|
||||||
|
env.Parse(&jf)
|
||||||
|
mapst.Decode(jf, &c)
|
||||||
|
return c
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ff Formatters) Json() (jf JsonFormat) {
|
||||||
|
o, ok := ff["json"]
|
||||||
|
if !ok {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
mapst.Decode(o, &jf)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -55,7 +55,12 @@ func TestOverrideJson(t *testing.T) {
|
||||||
assert.Equal(t, "txt", c.Input.Ext)
|
assert.Equal(t, "txt", c.Input.Ext)
|
||||||
}
|
}
|
||||||
|
|
||||||
// @todo test time
|
func TestTimeParse(t *testing.T) {
|
||||||
|
Overrides = map[string]string{"input.ext": "now"}
|
||||||
|
c, err := Load()
|
||||||
|
assert.ErrorContains(t, err, "incompatible types: TOML value has type time.Time; destination has type string")
|
||||||
|
assert.Equal(t, "txt", c.Input.Ext)
|
||||||
|
}
|
||||||
|
|
||||||
func TestStdoutMissing(t *testing.T) {
|
func TestStdoutMissing(t *testing.T) {
|
||||||
var oo Outputs = map[string]Output{}
|
var oo Outputs = map[string]Output{}
|
||||||
|
|
@ -65,12 +70,25 @@ func TestStdoutMissing(t *testing.T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestStdoutLoad(t *testing.T) {
|
func TestStdoutLoad(t *testing.T) {
|
||||||
os.Setenv("LOG_STDOUT_JSON", "true")
|
os.Setenv("LOG_STDOUT_FORMATTER", "json")
|
||||||
defer os.Unsetenv("LOG_STDOUT_JSON")
|
defer os.Unsetenv("LOG_STDOUT_FORMATTER")
|
||||||
os.Setenv("LOG_STDOUT_ENABLED", "true")
|
os.Setenv("LOG_STDOUT_ENABLED", "true")
|
||||||
defer os.Unsetenv("LOG_STDOUT_ENABLED")
|
defer os.Unsetenv("LOG_STDOUT_ENABLED")
|
||||||
c, _ := Load()
|
c, _ := Load()
|
||||||
std, en := c.Outputs.Stdout()
|
std, en := c.Outputs.Stdout()
|
||||||
assert.True(t, en)
|
assert.True(t, en)
|
||||||
assert.True(t, std.Json)
|
assert.Equal(t, "json", std.Formatter)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestFormatJson(t *testing.T) {
|
||||||
|
ff := Formatters{
|
||||||
|
"json": map[string]any{"pretty_print": true},
|
||||||
|
}
|
||||||
|
|
||||||
|
js := ff.Json()
|
||||||
|
assert.True(t, js.PrettyPrint)
|
||||||
|
|
||||||
|
ff = Formatters{}
|
||||||
|
js = ff.Json()
|
||||||
|
assert.False(t, js.PrettyPrint)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,9 @@
|
||||||
package config
|
package config
|
||||||
|
|
||||||
type Config struct {
|
type Config struct {
|
||||||
Input Input
|
Input Input
|
||||||
Outputs Outputs `toml:"output"`
|
Outputs Outputs `toml:"output"`
|
||||||
|
Formatters Formatters
|
||||||
}
|
}
|
||||||
|
|
||||||
type Input struct {
|
type Input struct {
|
||||||
|
|
@ -20,9 +21,15 @@ type Output struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
type Stdout struct {
|
type Stdout struct {
|
||||||
Json bool `env:"LOG_STDOUT_JSON" mapstructure:"json"`
|
Formatter string `env:"LOG_STDOUT_FORMATTER" mapstructure:"formatter"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type stdoutEnabled struct {
|
type stdoutEnabled struct {
|
||||||
Enabled bool `env:"LOG_STDOUT_ENABLED"`
|
Enabled bool `env:"LOG_STDOUT_ENABLED"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type Formatters map[string]map[string]any
|
||||||
|
|
||||||
|
type JsonFormat struct {
|
||||||
|
PrettyPrint bool `env:"LOG_JSON_PRETTY_PRINT" mapstructure:"pretty_print"`
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,7 @@ package files
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"io"
|
||||||
"os"
|
"os"
|
||||||
fp "path/filepath"
|
fp "path/filepath"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
@ -31,18 +32,32 @@ func Append(l models.Log) error {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
f, err := os.OpenFile(path, os.O_APPEND|os.O_CREATE|os.O_WRONLY, 0640)
|
f, err := os.OpenFile(path, os.O_APPEND|os.O_CREATE|os.O_RDWR, 0640)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
defer f.Close()
|
defer f.Close()
|
||||||
|
|
||||||
|
f.Seek(-1, os.SEEK_END)
|
||||||
|
last := make([]byte, 1, 1)
|
||||||
|
n, err := f.Read(last)
|
||||||
|
if err != nil && err != io.EOF {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
if err == nil && n > 0 {
|
||||||
|
if last[0] != 10 {
|
||||||
|
f.Write([]byte{10})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
for _, e := range l.Entries {
|
for _, e := range l.Entries {
|
||||||
by, err := e.MarshalText()
|
by, err := e.MarshalText()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
f.Write(by)
|
f.Write(by)
|
||||||
|
f.Write([]byte{10})
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
|
|
|
||||||
|
|
@ -33,6 +33,7 @@ func (s *AppendTestSuite) TearDownSuite() {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *AppendTestSuite) TestSuccess() {
|
func (s *AppendTestSuite) TestSuccess() {
|
||||||
|
defer os.Remove(s.dir + "/test.log")
|
||||||
when := time.Now().Local()
|
when := time.Now().Local()
|
||||||
e := models.Entry{
|
e := models.Entry{
|
||||||
Title: "Jimmy",
|
Title: "Jimmy",
|
||||||
|
|
@ -57,6 +58,82 @@ func (s *AppendTestSuite) TestSuccess() {
|
||||||
s.Assert().Contains(st, "\n@bar true")
|
s.Assert().Contains(st, "\n@bar true")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (s *AppendTestSuite) TestTwoEntries() {
|
||||||
|
defer os.Remove(s.dir + "/test.log")
|
||||||
|
when := time.Now().Local()
|
||||||
|
whens := when.Format(models.DateFormat)
|
||||||
|
e := []models.Entry{
|
||||||
|
{Title: "one", Date: when},
|
||||||
|
{Title: "two", Date: when},
|
||||||
|
}
|
||||||
|
l := models.Log{
|
||||||
|
Name: "test",
|
||||||
|
Entries: e,
|
||||||
|
}
|
||||||
|
err := Append(l)
|
||||||
|
s.Assert().NoError(err)
|
||||||
|
s.Require().FileExists(s.dir + "/test.log")
|
||||||
|
by, _ := os.ReadFile(s.dir + "/test.log")
|
||||||
|
exp := fmt.Sprintf("@begin %s - one @end\n@begin %s - two @end\n", whens, whens)
|
||||||
|
s.Assert().Equal(exp, string(by))
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *AppendTestSuite) TestAddNewLine() {
|
||||||
|
defer os.Remove(s.dir + "/test.log")
|
||||||
|
os.WriteFile(s.dir+"/test.log", []byte("foo"), 0644)
|
||||||
|
when := time.Now().Local()
|
||||||
|
whens := when.Format(models.DateFormat)
|
||||||
|
e := []models.Entry{
|
||||||
|
{Title: "one", Date: when},
|
||||||
|
}
|
||||||
|
l := models.Log{
|
||||||
|
Name: "test",
|
||||||
|
Entries: e,
|
||||||
|
}
|
||||||
|
err := Append(l)
|
||||||
|
s.Assert().NoError(err)
|
||||||
|
s.Require().FileExists(s.dir + "/test.log")
|
||||||
|
by, _ := os.ReadFile(s.dir + "/test.log")
|
||||||
|
exp := fmt.Sprintf("foo\n@begin %s - one @end\n", whens)
|
||||||
|
s.Assert().Equal(exp, string(by))
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *AppendTestSuite) TestDontAddNewLine() {
|
||||||
|
defer os.Remove(s.dir + "/test.log")
|
||||||
|
os.WriteFile(s.dir+"/test.log", []byte("foo\n"), 0644)
|
||||||
|
when := time.Now().Local()
|
||||||
|
whens := when.Format(models.DateFormat)
|
||||||
|
e := []models.Entry{
|
||||||
|
{Title: "one", Date: when},
|
||||||
|
}
|
||||||
|
l := models.Log{
|
||||||
|
Name: "test",
|
||||||
|
Entries: e,
|
||||||
|
}
|
||||||
|
err := Append(l)
|
||||||
|
s.Assert().NoError(err)
|
||||||
|
s.Require().FileExists(s.dir + "/test.log")
|
||||||
|
by, _ := os.ReadFile(s.dir + "/test.log")
|
||||||
|
exp := fmt.Sprintf("foo\n@begin %s - one @end\n", whens)
|
||||||
|
s.Assert().Equal(exp, string(by))
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *AppendTestSuite) TestFailEntry() {
|
||||||
|
defer os.Remove(s.dir + "/test.log")
|
||||||
|
e := models.Entry{
|
||||||
|
Title: "Jimmy",
|
||||||
|
}
|
||||||
|
l := models.Log{
|
||||||
|
Name: "test",
|
||||||
|
Entries: []models.Entry{e},
|
||||||
|
}
|
||||||
|
err := Append(l)
|
||||||
|
s.Assert().NoError(err)
|
||||||
|
s.Require().FileExists(s.dir + "/test.log")
|
||||||
|
by, _ := os.ReadFile(s.dir + "/test.log")
|
||||||
|
s.Assert().Equal([]byte{}, by)
|
||||||
|
}
|
||||||
|
|
||||||
func (s *AppendTestSuite) TestDotFolder() {
|
func (s *AppendTestSuite) TestDotFolder() {
|
||||||
config.Overrides["input.dotFolder"] = "true"
|
config.Overrides["input.dotFolder"] = "true"
|
||||||
e := models.Entry{
|
e := models.Entry{
|
||||||
|
|
|
||||||
10
formatters/interface.go
Normal file
10
formatters/interface.go
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
package formatters
|
||||||
|
|
||||||
|
import "codeberg.org/danjones000/my-log/models"
|
||||||
|
|
||||||
|
type Formatter interface {
|
||||||
|
Name() string
|
||||||
|
Log(models.Log) (out []byte, err error)
|
||||||
|
Entry(models.Entry) (out []byte, err error)
|
||||||
|
Meta(models.Meta) (out []byte, err error)
|
||||||
|
}
|
||||||
44
formatters/new.go
Normal file
44
formatters/new.go
Normal file
|
|
@ -0,0 +1,44 @@
|
||||||
|
package formatters
|
||||||
|
|
||||||
|
import (
|
||||||
|
"errors"
|
||||||
|
|
||||||
|
"codeberg.org/danjones000/my-log/config"
|
||||||
|
)
|
||||||
|
|
||||||
|
type formatMaker func(config.Formatters) (Formatter, error)
|
||||||
|
|
||||||
|
var formatterMap = map[string]formatMaker{
|
||||||
|
"plain": newPlain,
|
||||||
|
}
|
||||||
|
|
||||||
|
func Preferred() (f Formatter, err error) {
|
||||||
|
conf, err := config.Load()
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
std, _ := conf.Outputs.Stdout()
|
||||||
|
kind := std.Formatter
|
||||||
|
return New(kind)
|
||||||
|
}
|
||||||
|
|
||||||
|
func New(kind string) (f Formatter, err error) {
|
||||||
|
conf, err := config.Load()
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if make, ok := formatterMap[kind]; ok {
|
||||||
|
return make(conf.Formatters)
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil, errors.New("unimplemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
func Kinds() []string {
|
||||||
|
r := []string{}
|
||||||
|
for kind, _ := range formatterMap {
|
||||||
|
r = append(r, kind)
|
||||||
|
}
|
||||||
|
return r
|
||||||
|
}
|
||||||
45
formatters/new_test.go
Normal file
45
formatters/new_test.go
Normal file
|
|
@ -0,0 +1,45 @@
|
||||||
|
package formatters
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"os"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"codeberg.org/danjones000/my-log/config"
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestKinds(t *testing.T) {
|
||||||
|
assert.Equal(t, []string{"plain"}, Kinds())
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestNewUnsupported(t *testing.T) {
|
||||||
|
f, err := New("nope")
|
||||||
|
assert.Nil(t, f)
|
||||||
|
assert.Error(t, err)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestNewCantGetConfig(t *testing.T) {
|
||||||
|
f, _ := os.CreateTemp("", "test")
|
||||||
|
oldConf := config.ConfigPath
|
||||||
|
config.ConfigPath = f.Name()
|
||||||
|
defer f.Close()
|
||||||
|
defer func() {
|
||||||
|
config.ConfigPath = oldConf
|
||||||
|
}()
|
||||||
|
|
||||||
|
fmt.Fprint(f, `{"not":"toml"}`)
|
||||||
|
form, err := New("plain")
|
||||||
|
assert.Nil(t, form)
|
||||||
|
assert.Error(t, err)
|
||||||
|
|
||||||
|
form, err = Preferred()
|
||||||
|
assert.Nil(t, form)
|
||||||
|
assert.Error(t, err)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestPreferred(t *testing.T) {
|
||||||
|
form, err := Preferred()
|
||||||
|
assert.NotNil(t, form)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
}
|
||||||
88
formatters/plain.go
Normal file
88
formatters/plain.go
Normal file
|
|
@ -0,0 +1,88 @@
|
||||||
|
package formatters
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bytes"
|
||||||
|
|
||||||
|
"codeberg.org/danjones000/my-log/config"
|
||||||
|
"codeberg.org/danjones000/my-log/models"
|
||||||
|
"codeberg.org/danjones000/my-log/tools"
|
||||||
|
)
|
||||||
|
|
||||||
|
func newPlain(ff config.Formatters) (Formatter, error) {
|
||||||
|
return &PlainText{}, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
type PlainText struct {
|
||||||
|
// config might go here some day
|
||||||
|
}
|
||||||
|
|
||||||
|
func (pt *PlainText) Name() string {
|
||||||
|
return "plain"
|
||||||
|
}
|
||||||
|
|
||||||
|
func (pt *PlainText) Log(log models.Log) (out []byte, err error) {
|
||||||
|
if len(log.Entries) == 0 {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
buff := &bytes.Buffer{}
|
||||||
|
buff.WriteString(log.Name)
|
||||||
|
buff.WriteString("\n#######")
|
||||||
|
written := false
|
||||||
|
for _, e := range log.Entries {
|
||||||
|
bb := pt.entryBuffer(e)
|
||||||
|
if bb.Len() > 0 {
|
||||||
|
buff.WriteByte(10)
|
||||||
|
buff.WriteByte(10)
|
||||||
|
buff.ReadFrom(bb)
|
||||||
|
written = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if written {
|
||||||
|
out = buff.Bytes()
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func (pt *PlainText) entryBuffer(entry models.Entry) *bytes.Buffer {
|
||||||
|
buff := &bytes.Buffer{}
|
||||||
|
buff.WriteString("Title: ")
|
||||||
|
buff.WriteString(entry.Title)
|
||||||
|
buff.WriteByte(10)
|
||||||
|
buff.WriteString("Date: ")
|
||||||
|
buff.WriteString(entry.Date.Format(tools.DateFormat))
|
||||||
|
for _, m := range entry.Fields {
|
||||||
|
bb, err := pt.metaBuffer(m)
|
||||||
|
if (bb.Len() > 0) && (err == nil) {
|
||||||
|
buff.WriteByte(10)
|
||||||
|
buff.ReadFrom(bb)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return buff
|
||||||
|
}
|
||||||
|
|
||||||
|
func (pt *PlainText) Entry(entry models.Entry) ([]byte, error) {
|
||||||
|
buff := pt.entryBuffer(entry)
|
||||||
|
return buff.Bytes(), nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (pt *PlainText) metaBuffer(meta models.Meta) (*bytes.Buffer, error) {
|
||||||
|
buff := &bytes.Buffer{}
|
||||||
|
buff.WriteString(meta.Key)
|
||||||
|
buff.WriteString(": ")
|
||||||
|
n, err := tools.WriteValue(buff, meta.Value)
|
||||||
|
if n == 0 || err != nil {
|
||||||
|
return &bytes.Buffer{}, err
|
||||||
|
}
|
||||||
|
return buff, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (pt *PlainText) Meta(meta models.Meta) (out []byte, err error) {
|
||||||
|
buff, err := pt.metaBuffer(meta)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
out = buff.Bytes()
|
||||||
|
return
|
||||||
|
}
|
||||||
109
formatters/plain_test.go
Normal file
109
formatters/plain_test.go
Normal file
|
|
@ -0,0 +1,109 @@
|
||||||
|
package formatters
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bufio"
|
||||||
|
"bytes"
|
||||||
|
"fmt"
|
||||||
|
"testing"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"codeberg.org/danjones000/my-log/models"
|
||||||
|
"codeberg.org/danjones000/my-log/tools"
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
|
"github.com/stretchr/testify/require"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestPlainLog(t *testing.T) {
|
||||||
|
m := []models.Meta{
|
||||||
|
{"foo", "bar"},
|
||||||
|
{"baz", 42},
|
||||||
|
}
|
||||||
|
e := []models.Entry{
|
||||||
|
{Title: "one", Date: time.Now(), Fields: m},
|
||||||
|
{Title: "small", Date: time.Now()},
|
||||||
|
}
|
||||||
|
l := models.Log{"stuff", e}
|
||||||
|
|
||||||
|
f, err := New("plain")
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
out, err := f.Log(l)
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
read := bytes.NewReader(out)
|
||||||
|
scan := bufio.NewScanner(read)
|
||||||
|
|
||||||
|
scan.Scan()
|
||||||
|
line := scan.Text()
|
||||||
|
assert.Equal(t, l.Name, line)
|
||||||
|
|
||||||
|
scan.Scan()
|
||||||
|
line = scan.Text()
|
||||||
|
assert.Equal(t, "#######", line)
|
||||||
|
|
||||||
|
scan.Scan()
|
||||||
|
scan.Scan()
|
||||||
|
line = scan.Text()
|
||||||
|
assert.Equal(t, "Title: "+e[0].Title, line)
|
||||||
|
|
||||||
|
scan.Scan()
|
||||||
|
line = scan.Text()
|
||||||
|
assert.Equal(t, "Date: "+e[0].Date.Format(tools.DateFormat), line)
|
||||||
|
|
||||||
|
scan.Scan()
|
||||||
|
line = scan.Text()
|
||||||
|
assert.Equal(t, "foo: bar", line)
|
||||||
|
|
||||||
|
scan.Scan()
|
||||||
|
line = scan.Text()
|
||||||
|
assert.Equal(t, "baz: 42", line)
|
||||||
|
|
||||||
|
scan.Scan()
|
||||||
|
scan.Scan()
|
||||||
|
line = scan.Text()
|
||||||
|
assert.Equal(t, "Title: "+e[1].Title, line)
|
||||||
|
|
||||||
|
scan.Scan()
|
||||||
|
line = scan.Text()
|
||||||
|
assert.Equal(t, "Date: "+e[1].Date.Format(tools.DateFormat), line)
|
||||||
|
|
||||||
|
more := scan.Scan()
|
||||||
|
assert.False(t, more)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestPlainName(t *testing.T) {
|
||||||
|
f, _ := New("plain")
|
||||||
|
assert.Equal(t, "plain", f.Name())
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestPlainLogNoEntries(t *testing.T) {
|
||||||
|
f, _ := New("plain")
|
||||||
|
out, err := f.Log(models.Log{Name: "foo"})
|
||||||
|
assert.NoError(t, err)
|
||||||
|
assert.Len(t, out, 0)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestPlainMetaEmpty(t *testing.T) {
|
||||||
|
f, _ := New("plain")
|
||||||
|
out, err := f.Meta(models.Meta{"foo", ""})
|
||||||
|
assert.NoError(t, err)
|
||||||
|
assert.Len(t, out, 0)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestPlainMetaError(t *testing.T) {
|
||||||
|
f, _ := New("plain")
|
||||||
|
out, err := f.Meta(models.Meta{"foo", make(chan bool)})
|
||||||
|
assert.Error(t, err)
|
||||||
|
assert.Len(t, out, 0)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestPlainEntry(t *testing.T) {
|
||||||
|
f, _ := New("plain")
|
||||||
|
now := time.Now()
|
||||||
|
out, err := f.Entry(models.Entry{
|
||||||
|
Title: "foo",
|
||||||
|
Date: now,
|
||||||
|
})
|
||||||
|
assert.NoError(t, err)
|
||||||
|
assert.Equal(t, fmt.Sprintf("Title: foo\nDate: %s", now.Format(tools.DateFormat)), string(out))
|
||||||
|
}
|
||||||
|
|
@ -74,7 +74,7 @@ func (e Entry) MarshalText() ([]byte, error) {
|
||||||
}
|
}
|
||||||
ch := e.getFieldMarshalChan()
|
ch := e.getFieldMarshalChan()
|
||||||
buff := &bytes.Buffer{}
|
buff := &bytes.Buffer{}
|
||||||
buff.WriteString("\n@begin ")
|
buff.WriteString("@begin ")
|
||||||
buff.WriteString(e.Date.Format(DateFormat))
|
buff.WriteString(e.Date.Format(DateFormat))
|
||||||
buff.WriteString(" - ")
|
buff.WriteString(" - ")
|
||||||
buff.WriteString(e.Title)
|
buff.WriteString(e.Title)
|
||||||
|
|
|
||||||
|
|
@ -90,13 +90,13 @@ func getEntryMarshalTestRunner(title string, date time.Time, fields []Meta, firs
|
||||||
if first == "" {
|
if first == "" {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
os := string(o)
|
||||||
if len(lines) == 0 {
|
if len(lines) == 0 {
|
||||||
assert.Equal(t, "\n"+first, string(o))
|
assert.Equal(t, first, os)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
os := string(o)
|
assert.Regexp(t, first, os)
|
||||||
assert.Regexp(t, "^\n"+first, os)
|
|
||||||
for _, line := range lines {
|
for _, line := range lines {
|
||||||
assert.Regexp(t, "(?m)^"+line, os)
|
assert.Regexp(t, "(?m)^"+line, os)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -2,12 +2,9 @@ package models
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"encoding/json"
|
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"regexp"
|
"regexp"
|
||||||
"strconv"
|
|
||||||
"time"
|
|
||||||
|
|
||||||
"codeberg.org/danjones000/my-log/tools"
|
"codeberg.org/danjones000/my-log/tools"
|
||||||
)
|
)
|
||||||
|
|
@ -25,33 +22,9 @@ func (m Meta) MarshalText() ([]byte, error) {
|
||||||
buff.WriteRune('@')
|
buff.WriteRune('@')
|
||||||
buff.WriteString(m.Key)
|
buff.WriteString(m.Key)
|
||||||
buff.WriteRune(' ')
|
buff.WriteRune(' ')
|
||||||
switch v := m.Value.(type) {
|
n, err := tools.WriteValue(buff, m.Value)
|
||||||
default:
|
if n == 0 || err != nil {
|
||||||
return nil, fmt.Errorf("Unknown type %T", v)
|
return []byte{}, err
|
||||||
case nil:
|
|
||||||
return []byte{}, nil
|
|
||||||
case string:
|
|
||||||
buff.WriteString(v)
|
|
||||||
case int:
|
|
||||||
buff.WriteString(strconv.Itoa(v))
|
|
||||||
case int64:
|
|
||||||
buff.WriteString(strconv.FormatInt(v, 10))
|
|
||||||
case float64:
|
|
||||||
buff.WriteString(strconv.FormatFloat(v, 'f', -1, 64))
|
|
||||||
case json.Number:
|
|
||||||
buff.WriteString(v.String())
|
|
||||||
case json.RawMessage:
|
|
||||||
buff.Write(v)
|
|
||||||
case []byte:
|
|
||||||
buff.Write(v)
|
|
||||||
case byte:
|
|
||||||
buff.WriteByte(v)
|
|
||||||
case rune:
|
|
||||||
buff.WriteString(string(v))
|
|
||||||
case bool:
|
|
||||||
buff.WriteString(strconv.FormatBool(v))
|
|
||||||
case time.Time:
|
|
||||||
buff.WriteString(v.Format(time.RFC3339))
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return buff.Bytes(), nil
|
return buff.Bytes(), nil
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,7 @@ func TestMeta(t *testing.T) {
|
||||||
{"byte", "byteme", byte(67), "@byteme C", nil, "C"},
|
{"byte", "byteme", byte(67), "@byteme C", nil, "C"},
|
||||||
{"json-obj", "obj", json.RawMessage(`{"foo":"bar","baz":"quux"}`), `@obj {"foo":"bar","baz":"quux"}`, nil, json.RawMessage(`{"foo":"bar","baz":"quux"}`)},
|
{"json-obj", "obj", json.RawMessage(`{"foo":"bar","baz":"quux"}`), `@obj {"foo":"bar","baz":"quux"}`, nil, json.RawMessage(`{"foo":"bar","baz":"quux"}`)},
|
||||||
{"json-arr", "arr", json.RawMessage(`["foo",42,"bar", null,"quux", true]`), `@arr ["foo",42,"bar", null,"quux", true]`, nil, json.RawMessage(`["foo",42,"bar", null,"quux", true]`)},
|
{"json-arr", "arr", json.RawMessage(`["foo",42,"bar", null,"quux", true]`), `@arr ["foo",42,"bar", null,"quux", true]`, nil, json.RawMessage(`["foo",42,"bar", null,"quux", true]`)},
|
||||||
{"chan", "nope", make(chan bool), "", errors.New("Unknown type chan bool"), ""},
|
{"chan", "nope", make(chan bool), "", errors.New("Unsupported type chan bool"), ""},
|
||||||
{"whitespace-key", "no space", "hi", "", errors.New("whitespace is not allowed in key: no space"), ""},
|
{"whitespace-key", "no space", "hi", "", errors.New("whitespace is not allowed in key: no space"), ""},
|
||||||
{"empty-mar", "nope", skipMarshalTest, "", nil, ErrorParsing},
|
{"empty-mar", "nope", skipMarshalTest, "", nil, ErrorParsing},
|
||||||
{"no-key-mar", "nope", skipMarshalTest, "nope", nil, ErrorParsing},
|
{"no-key-mar", "nope", skipMarshalTest, "nope", nil, ErrorParsing},
|
||||||
|
|
|
||||||
44
tools/write_buffer.go
Normal file
44
tools/write_buffer.go
Normal file
|
|
@ -0,0 +1,44 @@
|
||||||
|
package tools
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bytes"
|
||||||
|
"encoding/json"
|
||||||
|
"fmt"
|
||||||
|
"strconv"
|
||||||
|
"time"
|
||||||
|
)
|
||||||
|
|
||||||
|
func WriteValue(buff *bytes.Buffer, val any) (n int, err error) {
|
||||||
|
switch v := val.(type) {
|
||||||
|
default:
|
||||||
|
err = fmt.Errorf("Unsupported type %T", v)
|
||||||
|
case nil:
|
||||||
|
return
|
||||||
|
case string:
|
||||||
|
return buff.WriteString(v)
|
||||||
|
case int:
|
||||||
|
return buff.WriteString(strconv.Itoa(v))
|
||||||
|
case int64:
|
||||||
|
return buff.WriteString(strconv.FormatInt(v, 10))
|
||||||
|
case float64:
|
||||||
|
return buff.WriteString(strconv.FormatFloat(v, 'f', -1, 64))
|
||||||
|
case json.Number:
|
||||||
|
return buff.WriteString(v.String())
|
||||||
|
case json.RawMessage:
|
||||||
|
return buff.Write(v)
|
||||||
|
case []byte:
|
||||||
|
return buff.Write(v)
|
||||||
|
case byte:
|
||||||
|
err = buff.WriteByte(v)
|
||||||
|
if err == nil {
|
||||||
|
n = 1
|
||||||
|
}
|
||||||
|
case rune:
|
||||||
|
return buff.WriteString(string(v))
|
||||||
|
case bool:
|
||||||
|
return buff.WriteString(strconv.FormatBool(v))
|
||||||
|
case time.Time:
|
||||||
|
return buff.WriteString(v.Format(time.RFC3339))
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
49
tools/write_buffer_test.go
Normal file
49
tools/write_buffer_test.go
Normal file
|
|
@ -0,0 +1,49 @@
|
||||||
|
package tools
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bytes"
|
||||||
|
"encoding/json"
|
||||||
|
"errors"
|
||||||
|
"testing"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestWriteBuffer(t *testing.T) {
|
||||||
|
when := time.Now()
|
||||||
|
tests := []struct {
|
||||||
|
name string
|
||||||
|
value any
|
||||||
|
out string
|
||||||
|
err error
|
||||||
|
}{
|
||||||
|
{"nil", nil, "", nil},
|
||||||
|
{"string", "hi", "hi", nil},
|
||||||
|
{"bytes", []byte{104, 105}, "hi", nil},
|
||||||
|
{"byte", byte(104), "h", nil},
|
||||||
|
{"rune", 'h', "h", nil},
|
||||||
|
{"int", 42, "42", nil},
|
||||||
|
{"int64", int64(42), "42", nil},
|
||||||
|
{"float", 42.13, "42.13", nil},
|
||||||
|
{"bool", false, "false", nil},
|
||||||
|
{"json.Number", json.Number("42.13"), "42.13", nil},
|
||||||
|
{"json.RawMessage", json.RawMessage("{}"), "{}", nil},
|
||||||
|
{"time", when, when.Format(time.RFC3339), nil},
|
||||||
|
{"struct", struct{}{}, "", errors.New("Unsupported type struct {}")},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, tt := range tests {
|
||||||
|
t.Run(tt.name, getWriteTestRunner(tt.value, tt.out, tt.err))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func getWriteTestRunner(value any, out string, err error) func(*testing.T) {
|
||||||
|
return func(t *testing.T) {
|
||||||
|
buff := &bytes.Buffer{}
|
||||||
|
n, er := WriteValue(buff, value)
|
||||||
|
assert.Equal(t, len(out), n)
|
||||||
|
assert.Equal(t, err, er)
|
||||||
|
assert.Equal(t, out, buff.String())
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue