mirror of
https://codeberg.org/scip/ts.git
synced 2025-12-18 21:11:04 +01:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d138af85f3 | ||
|
|
ef4cc8b84b | ||
| 71e36c36d3 |
151
README.md
151
README.md
@@ -2,11 +2,137 @@
|
||||
|
||||
generic cli timestamp parser and calculator tool
|
||||
|
||||
## Usage
|
||||
## Introduction
|
||||
|
||||
This little utility is a commandline frontent to the amazing datetime
|
||||
parser module [anytime](https://github.com/ijt/go-anytime). It uses
|
||||
two other modules as fallback if anytime might fail:
|
||||
[now](https://github.com/jinzhu/now) and
|
||||
[dateparse](github.com/araddon/dateparse).
|
||||
|
||||
You can use it to print timestamps from plain english phrases like
|
||||
`next December 23rd AT 5:25 PM` or `two minutes from now`. In addition
|
||||
you can calculate the difference between two timestamps and you can
|
||||
add a duration to a timestamp.
|
||||
|
||||
|
||||
## Example Usage
|
||||
|
||||
In these examples the current time is always **2025-09-17T07:30:00+01:00**.
|
||||
|
||||
Show current date and time (same as `date`):
|
||||
```default
|
||||
% ts now
|
||||
Wed Sep 17 07:30:00 +0100 2025
|
||||
```
|
||||
|
||||
show timestamp for minus 1 hour
|
||||
```default
|
||||
% ts "1 hour ago"
|
||||
Wed Sep 17 06:30:00 +0100 2025
|
||||
```
|
||||
|
||||
... or from a couple days ago:
|
||||
```default
|
||||
% ts "4 days ago"
|
||||
Sat Sep 13 07:30:00 +0100 2025
|
||||
```
|
||||
There are much more ways to get timestamps, see `ts -e`.
|
||||
|
||||
We can also add times to timestamps, here we want to know the
|
||||
timestamp from now plus 10 days and 4 hours in the future:
|
||||
```default
|
||||
% ts -a now 10d4h
|
||||
Sat Sep 27 11:30:00 +0100 2025
|
||||
```
|
||||
|
||||
It doesn't make a difference where you position the `-a` parameter:
|
||||
```default
|
||||
% ts now -a 10d4h
|
||||
Sat Sep 27 11:30:00 +0100 2025
|
||||
```
|
||||
Of course you can also calculate the difference between two
|
||||
dates. Here we have two timestamps (maybe we took them from a log
|
||||
file) and want to know the dime elapsed between them:
|
||||
|
||||
```default
|
||||
This is ts, a timestamp tool.
|
||||
% ts 2025-09-17T07:30:00+01:00 2025-09-15T12:45:00+01:00
|
||||
42h45m0s
|
||||
```
|
||||
As you can see, if you do not provide a parameter, the default is to
|
||||
calculate the difference between the two args. To explicitly calculate
|
||||
the difference, use the `-d` parameter.
|
||||
|
||||
You can of course use english phrases for time differences as well:
|
||||
```default
|
||||
% ts "today 9 am" 2025-09-15T12:45:00+01:00
|
||||
44h15m0s
|
||||
```
|
||||
|
||||
Lets talk a little bit about formatting. You may have already
|
||||
recognized, that `ts` prints either whole timestamps or
|
||||
durations. Both output types can be modified with the `-f`
|
||||
parameter. There are predefined formats for timestamps:
|
||||
|
||||
```default
|
||||
% ts now
|
||||
Wed Sep 17 07:30:00 +0100 2025
|
||||
% ts now -f rfc3339
|
||||
2025-09-17T07:30:00+01:00
|
||||
% ts now -f date
|
||||
2025-09-17
|
||||
% ts now -f unix
|
||||
1758090600
|
||||
```
|
||||
|
||||
But you can also specify your own, you have to follow the [golang
|
||||
rules for timestamp formats](https://pkg.go.dev/time#Layout),
|
||||
basically:
|
||||
|
||||
* Year: "2006" "06"
|
||||
* Month: "Jan" "January" "01" "1"
|
||||
* Day of the week: "Mon" "Monday"
|
||||
* Day of the month: "2" "_2" "02"
|
||||
* Day of the year: "__2" "002"
|
||||
* Hour: "15" "3" "03" (PM or AM)
|
||||
* Minute: "4" "04"
|
||||
* Second: "5" "05"
|
||||
* AM/PM mark: "PM"
|
||||
|
||||
for example:
|
||||
```default
|
||||
% ts now -f "Mon, 02.January 2006"
|
||||
Wed, 17.September 2025
|
||||
```
|
||||
|
||||
Ok I admit look is kinda weird, complaints go the the golang dev team
|
||||
:).
|
||||
|
||||
Duration formatting is also customizable. By default a duration looks
|
||||
like we have seen above: `44h15m0s`. But sometimes we want to know the
|
||||
number of hours or minutes. Easy:
|
||||
|
||||
```default
|
||||
% ts now 2025-09-15T12:45:00+01:00 -f hours
|
||||
42.75
|
||||
% ts now 2025-09-15T12:45:00+01:00 -f minutes
|
||||
2565.00
|
||||
```
|
||||
|
||||
You may also add the `-u` parameter to have the unit shown as well:
|
||||
|
||||
```default
|
||||
% ts now 2025-09-15T12:45:00+01:00 -f hours -u
|
||||
42.75 hours
|
||||
% ts now 2025-09-15T12:45:00+01:00 -f minutes -u
|
||||
2565.00 minutes
|
||||
```
|
||||
|
||||
## Commandline parameters
|
||||
|
||||
Here is the list of all supported parameters:
|
||||
|
||||
```default
|
||||
Usage: ts <time string> [<time string>]
|
||||
-d --diff Calculate difference between two timestamps (default).
|
||||
-a --add Add two timestamps (second parameter must be a time).
|
||||
@@ -21,27 +147,6 @@ Usage: ts <time string> [<time string>]
|
||||
-e --examples Show examples or supported inputs.
|
||||
```
|
||||
|
||||
## Examples
|
||||
|
||||
```default
|
||||
# diff between to day and yesterday 10 am
|
||||
ts today "10am yesterday"
|
||||
14h0m0s
|
||||
|
||||
# show timestamp from a couple days ago
|
||||
ts "3 days ago"
|
||||
2025-09-21 13:51:55.054754744 +0200 CEST
|
||||
|
||||
# show timestamp of one hour and 45 minutes before (-d is the defaul)
|
||||
ts -d now 1h45m
|
||||
2025-09-24 12:07:45.072300157 +0200 CEST m=-6299.999710536
|
||||
|
||||
# 10 hours from now
|
||||
ts now 10h
|
||||
2025-09-24 03:53:36.7095512 +0200 CEST m=-35999.999720767
|
||||
```
|
||||
|
||||
To see a comprehensive list of supported inputs, call `ts -e`.
|
||||
|
||||
## Installation
|
||||
|
||||
|
||||
@@ -23,6 +23,7 @@ import (
|
||||
"io"
|
||||
"log"
|
||||
"os"
|
||||
"time"
|
||||
|
||||
"github.com/knadh/koanf/providers/posflag"
|
||||
"github.com/knadh/koanf/v2"
|
||||
@@ -31,7 +32,7 @@ import (
|
||||
)
|
||||
|
||||
const (
|
||||
VERSIONstring = "0.0.2"
|
||||
VERSIONstring = "0.0.4"
|
||||
Usage string = `This is ts, a timestamp tool.
|
||||
|
||||
Usage: ts <time string> [<time string>]
|
||||
@@ -76,8 +77,11 @@ noon Yesterday at 10:15am Mon, 02 Jan 2006 15:
|
||||
Example durations for second parameter:
|
||||
2d1h30m 2 days, one and a half hour
|
||||
30m 30 minutes`
|
||||
|
||||
ModeDiff int = iota
|
||||
ModeAdd
|
||||
|
||||
DefaultFormat string = "Mon Jan 02 15:04:05 MST 2006"
|
||||
)
|
||||
|
||||
type Config struct {
|
||||
@@ -92,6 +96,10 @@ type Config struct {
|
||||
Args []string
|
||||
Output io.Writer
|
||||
Mode int
|
||||
|
||||
// internal flags for [unit] tests
|
||||
tz string // has to be set directly in code
|
||||
refTime time.Time // must be set via env var $TSREFTIME
|
||||
}
|
||||
|
||||
func InitConfig(output io.Writer) (*Config, error) {
|
||||
@@ -126,17 +134,30 @@ func InitConfig(output io.Writer) (*Config, error) {
|
||||
}
|
||||
|
||||
// fetch values
|
||||
conf := &Config{Output: output}
|
||||
conf := &Config{Output: output, refTime: time.Now()}
|
||||
if err := kloader.Unmarshal("", &conf); err != nil {
|
||||
return nil, fmt.Errorf("error unmarshalling: %w", err)
|
||||
}
|
||||
|
||||
// check internal env var[s], if any
|
||||
reftime, present := os.LookupEnv("TSREFTIME")
|
||||
if present {
|
||||
// e.g: 2014-01-03T00:00:00+01:00
|
||||
ts, err := time.Parse(time.RFC3339Nano, reftime)
|
||||
if err != nil {
|
||||
os.Exit(Die("failed to set reference time from $TSREFTIME", err))
|
||||
}
|
||||
|
||||
conf.refTime = ts
|
||||
}
|
||||
|
||||
// want examples?
|
||||
if conf.Examples {
|
||||
_, err := fmt.Fprintln(output, Examples)
|
||||
if err != nil {
|
||||
Die(err)
|
||||
Die("failed write to output file handle", err)
|
||||
}
|
||||
|
||||
os.Exit(0)
|
||||
}
|
||||
|
||||
|
||||
12
cmd/root.go
12
cmd/root.go
@@ -18,12 +18,13 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
package cmd
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"io"
|
||||
"log"
|
||||
"os"
|
||||
)
|
||||
|
||||
func Die(err error) int {
|
||||
log.Fatal("Error: ", err.Error())
|
||||
func Die(format string, err error) int {
|
||||
fmt.Fprintf(os.Stderr, format+": %s\n", err)
|
||||
|
||||
return 1
|
||||
}
|
||||
@@ -31,13 +32,14 @@ func Die(err error) int {
|
||||
func Main(output io.Writer) int {
|
||||
conf, err := InitConfig(output)
|
||||
if err != nil {
|
||||
return Die(err)
|
||||
fmt.Println(1)
|
||||
return Die("failed to initialize", err)
|
||||
}
|
||||
|
||||
tp := NewTP(conf)
|
||||
|
||||
if err := tp.ProcessTimestamps(); err != nil {
|
||||
return Die(err)
|
||||
return Die("failed to process timestamp[s]", err)
|
||||
}
|
||||
|
||||
return 0
|
||||
|
||||
50
cmd/times.go
50
cmd/times.go
@@ -20,13 +20,12 @@ package cmd
|
||||
import (
|
||||
"errors"
|
||||
"fmt"
|
||||
"log"
|
||||
"regexp"
|
||||
"strconv"
|
||||
"time"
|
||||
|
||||
"github.com/araddon/dateparse"
|
||||
"github.com/ijt/go-anytime"
|
||||
"github.com/itlightning/dateparse"
|
||||
modnow "github.com/jinzhu/now"
|
||||
)
|
||||
|
||||
@@ -46,9 +45,10 @@ func NewTP(conf *Config, ref ...time.Time) *TimestampProccessor {
|
||||
|
||||
modnow.TimeFormats = append(modnow.TimeFormats, formats...)
|
||||
|
||||
tp := &TimestampProccessor{Config: *conf, Reference: time.Now()}
|
||||
tp := &TimestampProccessor{Config: *conf, Reference: conf.refTime}
|
||||
|
||||
if len(ref) == 1 {
|
||||
// overwritten externally by unit test
|
||||
tp.Reference = ref[0]
|
||||
}
|
||||
|
||||
@@ -60,25 +60,31 @@ func (tp *TimestampProccessor) ProcessTimestamps() error {
|
||||
case 1:
|
||||
return tp.SingleTimestamp(tp.Args[0])
|
||||
case 2:
|
||||
return tp.Calc(tp.Args[0], tp.Args[1])
|
||||
return tp.DualTimestamps(tp.Args[0], tp.Args[1])
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (tp *TimestampProccessor) SingleTimestamp(timestamp string) error {
|
||||
ts, err := tp.Parse(timestamp)
|
||||
// a post processor for ParseTimestamp() to apply custom time zone, if any
|
||||
func (tp *TimestampProccessor) Parse(timestamp string) (time.Time, error) {
|
||||
ts, err := tp.ParseTimestamp(timestamp)
|
||||
|
||||
if err != nil {
|
||||
return err
|
||||
return ts, err
|
||||
}
|
||||
|
||||
tp.Print(ts)
|
||||
if tp.tz != "" {
|
||||
// apply custom timezone
|
||||
zone, _ := time.LoadLocation(tp.tz)
|
||||
ts = ts.In(zone)
|
||||
}
|
||||
|
||||
return nil
|
||||
return ts, nil
|
||||
}
|
||||
|
||||
// Parse uses 3 different timestamp parser modules to provide maximum flexibility
|
||||
func (tp *TimestampProccessor) Parse(timestamp string) (time.Time, error) {
|
||||
func (tp *TimestampProccessor) ParseTimestamp(timestamp string) (time.Time, error) {
|
||||
ts, err := anytime.Parse(timestamp, tp.Reference)
|
||||
if err == nil {
|
||||
return ts, nil
|
||||
@@ -94,7 +100,19 @@ func (tp *TimestampProccessor) Parse(timestamp string) (time.Time, error) {
|
||||
return dateparse.ParseAny(timestamp)
|
||||
}
|
||||
|
||||
func (tp *TimestampProccessor) Calc(timestampA, timestampB string) error {
|
||||
func (tp *TimestampProccessor) SingleTimestamp(timestamp string) error {
|
||||
ts, err := tp.Parse(timestamp)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
tp.Print(TPdatetime{TimestampProccessor: *tp, Data: ts})
|
||||
//tp.Print(ts)
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (tp *TimestampProccessor) DualTimestamps(timestampA, timestampB string) error {
|
||||
tsA, err := tp.Parse(timestampA)
|
||||
if err != nil {
|
||||
return err
|
||||
@@ -112,6 +130,12 @@ func (tp *TimestampProccessor) Calc(timestampA, timestampB string) error {
|
||||
return err
|
||||
}
|
||||
|
||||
tp.CalcDiff(tsA, tsB)
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (tp *TimestampProccessor) CalcDiff(tsA time.Time, tsB time.Time) {
|
||||
switch tp.Mode {
|
||||
case ModeDiff:
|
||||
var diff time.Duration
|
||||
@@ -131,8 +155,6 @@ func (tp *TimestampProccessor) Calc(timestampA, timestampB string) error {
|
||||
|
||||
tp.Print(TPdatetime{TimestampProccessor: *tp, Data: sum})
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (tp *TimestampProccessor) CalcDuration(tsA time.Time, durB time.Duration) {
|
||||
@@ -151,7 +173,7 @@ func (tp *TimestampProccessor) CalcDuration(tsA time.Time, durB time.Duration) {
|
||||
func (tp *TimestampProccessor) Print(ts TimestampWriter) {
|
||||
_, err := fmt.Fprintln(tp.Output, ts.String())
|
||||
if err != nil {
|
||||
log.Fatalf("failed to print to given output handle: %s", err)
|
||||
Die("failed to print to given output handle", err)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -65,13 +65,15 @@ func TestParseTimestamps(t *testing.T) {
|
||||
{`One year ago`, now.AddDate(-1, 0, 0)},
|
||||
{`03:15`, dateAtTime(now, 3, 15, 0)},
|
||||
{`Wed Sep 25 12:30:00 PM UTC 2025`, now},
|
||||
{`Wed Sep 25 00:30:00 PM CEST 2025`, now},
|
||||
{`Wed Sep 25 2025 13:30:00 GMT+0100 (GMT Daylight Time)`, now},
|
||||
}
|
||||
|
||||
for _, tt := range datetimes {
|
||||
testname := fmt.Sprintf("parsetimestamp-%s", strings.ReplaceAll(tt.input, " ", "-"))
|
||||
t.Run(testname, func(t *testing.T) {
|
||||
var writer bytes.Buffer
|
||||
tp := NewTP(&Config{Args: []string{tt.input}, Output: &writer}, now)
|
||||
tp := NewTP(&Config{Args: []string{tt.input}, Output: &writer, tz: "UTC"}, now)
|
||||
|
||||
// writer.String()
|
||||
ts, err := tp.Parse(tt.input)
|
||||
@@ -80,7 +82,7 @@ func TestParseTimestamps(t *testing.T) {
|
||||
|
||||
err = tp.ProcessTimestamps()
|
||||
assert.NoError(t, err)
|
||||
assert.EqualValues(t, tt.want.String()+"\n", writer.String())
|
||||
assert.EqualValues(t, tt.want.Format(DefaultFormat)+"\n", writer.String())
|
||||
})
|
||||
}
|
||||
}
|
||||
@@ -146,7 +148,7 @@ func TestAddTimestamps(t *testing.T) {
|
||||
|
||||
err := tp.ProcessTimestamps()
|
||||
assert.NoError(t, err)
|
||||
assert.EqualValues(t, tt.want.String()+"\n", writer.String())
|
||||
assert.EqualValues(t, tt.want.Format(DefaultFormat)+"\n", writer.String())
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
@@ -57,7 +57,7 @@ func (duration TPduration) String() string {
|
||||
// duration, days, hour, min, sec, msec
|
||||
switch duration.Format {
|
||||
case "d", "day", "days":
|
||||
return fmt.Sprintf("%.02f%s", duration.Data.Hours()/24+(duration.Data.Minutes()/60), unit)
|
||||
return fmt.Sprintf("%.02f%s", duration.Data.Hours()/24, unit)
|
||||
case "h", "hour", "hours":
|
||||
return fmt.Sprintf("%.02f%s", duration.Data.Hours(), unit)
|
||||
case "m", "min", "mins", "minutes":
|
||||
@@ -87,7 +87,7 @@ func (datetime TPdatetime) String() string {
|
||||
case "datetime":
|
||||
fallthrough
|
||||
case "":
|
||||
return datetime.Data.String()
|
||||
return datetime.Data.Format(DefaultFormat)
|
||||
default:
|
||||
return datetime.Data.Format(datetime.Format)
|
||||
}
|
||||
|
||||
81
cmd/writer_test.go
Normal file
81
cmd/writer_test.go
Normal file
@@ -0,0 +1,81 @@
|
||||
/*
|
||||
Copyright © 2025 Thomas von Dein
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package cmd
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
)
|
||||
|
||||
func TestDuration(t *testing.T) {
|
||||
var tests = []struct {
|
||||
format string
|
||||
duration time.Duration
|
||||
want string
|
||||
}{
|
||||
{"day", time.Hour * 24, "1.00 days"},
|
||||
{"dur", time.Hour * 24, "24h0m0s"},
|
||||
{"hour", time.Hour * 24, "24.00 hours"},
|
||||
{"min", time.Minute * 20, "20.00 minutes"},
|
||||
{"min", time.Minute*20 + time.Second*30, "20.50 minutes"},
|
||||
{"sec", time.Second * 30, "30.00 seconds"},
|
||||
{"ms", time.Second * 30, "30000 milliseconds"},
|
||||
}
|
||||
|
||||
for _, tt := range tests {
|
||||
testname := fmt.Sprintf("formatduration-%s", tt.format)
|
||||
t.Run(testname, func(t *testing.T) {
|
||||
tpdur := TPduration{Data: tt.duration}
|
||||
tpdur.Unit = true
|
||||
tpdur.Format = tt.format
|
||||
|
||||
out := tpdur.String()
|
||||
assert.Equal(t, tt.want, out)
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
func TestDatetime(t *testing.T) {
|
||||
var now = time.Date(2025, 9, 25, 12, 30, 00, 0, time.UTC)
|
||||
|
||||
var tests = []struct {
|
||||
format string
|
||||
datetime time.Time
|
||||
want string
|
||||
}{
|
||||
{"rfc3339", now, "2025-09-25T12:30:00Z"},
|
||||
{"date", now, "2025-09-25"},
|
||||
{"time", now, "12:30:00"},
|
||||
{"unix", now, "1758803400"},
|
||||
{"datetime", now, "Thu Sep 25 12:30:00 UTC 2025"},
|
||||
}
|
||||
|
||||
for _, tt := range tests {
|
||||
testname := fmt.Sprintf("formatdatetime-%s", tt.format)
|
||||
t.Run(testname, func(t *testing.T) {
|
||||
tpdat := TPdatetime{Data: tt.datetime}
|
||||
tpdat.Format = tt.format
|
||||
|
||||
out := tpdat.String()
|
||||
assert.Equal(t, tt.want, out)
|
||||
})
|
||||
}
|
||||
}
|
||||
4
go.mod
4
go.mod
@@ -5,6 +5,7 @@ go 1.23.0
|
||||
toolchain go1.23.5
|
||||
|
||||
require (
|
||||
github.com/araddon/dateparse v0.0.0-20210429162001-6b43995a97de // indirect
|
||||
github.com/davecgh/go-spew v1.1.1 // indirect
|
||||
github.com/go-viper/mapstructure/v2 v2.4.0 // indirect
|
||||
github.com/ijt/go-anytime v1.9.2 // indirect
|
||||
@@ -17,7 +18,10 @@ require (
|
||||
github.com/mitchellh/copystructure v1.2.0 // indirect
|
||||
github.com/mitchellh/reflectwalk v1.0.2 // indirect
|
||||
github.com/pmezard/go-difflib v1.0.0 // indirect
|
||||
github.com/rogpeppe/go-internal v1.14.1 // indirect
|
||||
github.com/spf13/pflag v1.0.10 // indirect
|
||||
github.com/stretchr/testify v1.11.1 // indirect
|
||||
golang.org/x/sys v0.26.0 // indirect
|
||||
golang.org/x/tools v0.26.0 // indirect
|
||||
gopkg.in/yaml.v3 v3.0.1 // indirect
|
||||
)
|
||||
|
||||
15
go.sum
15
go.sum
@@ -1,3 +1,6 @@
|
||||
github.com/araddon/dateparse v0.0.0-20210429162001-6b43995a97de h1:FxWPpzIjnTlhPwqqXc4/vE0f7GvRjuAsbW+HOIe8KnA=
|
||||
github.com/araddon/dateparse v0.0.0-20210429162001-6b43995a97de/go.mod h1:DCaWoUhZrYW9p1lxo/cm8EmUOOzAPSEZNGF2DK1dJgw=
|
||||
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
||||
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
|
||||
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
||||
github.com/go-viper/mapstructure/v2 v2.4.0 h1:EBsztssimR/CONLSZZ04E8qAkxNYq4Qp9LvH92wZUgs=
|
||||
@@ -16,16 +19,28 @@ github.com/knadh/koanf/providers/posflag v1.0.1 h1:EnMxHSrPkYCFnKgBUl5KBgrjed8gV
|
||||
github.com/knadh/koanf/providers/posflag v1.0.1/go.mod h1:3Wn3+YG3f4ljzRyCUgIwH7G0sZ1pMjCOsNBovrbKmAk=
|
||||
github.com/knadh/koanf/v2 v2.3.0 h1:Qg076dDRFHvqnKG97ZEsi9TAg2/nFTa9hCdcSa1lvlM=
|
||||
github.com/knadh/koanf/v2 v2.3.0/go.mod h1:gRb40VRAbd4iJMYYD5IxZ6hfuopFcXBpc9bbQpZwo28=
|
||||
github.com/mattn/go-runewidth v0.0.10/go.mod h1:RAqKPSqVFrSLVXbA8x7dzmKdmGzieGRCM46jaSJTDAk=
|
||||
github.com/mitchellh/copystructure v1.2.0 h1:vpKXTN4ewci03Vljg/q9QvCGUDttBOGBIa15WveJJGw=
|
||||
github.com/mitchellh/copystructure v1.2.0/go.mod h1:qLl+cE2AmVv+CoeAwDPye/v+N2HKCj9FbZEVFJRxO9s=
|
||||
github.com/mitchellh/reflectwalk v1.0.2 h1:G2LzWKi524PWgd3mLHV8Y5k7s6XUvT0Gef6zxSIeXaQ=
|
||||
github.com/mitchellh/reflectwalk v1.0.2/go.mod h1:mSTlrgnPZtwu0c4WaC2kGObEpuNDbx0jmZXqmk4esnw=
|
||||
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
|
||||
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
|
||||
github.com/rivo/uniseg v0.1.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc=
|
||||
github.com/rogpeppe/go-internal v1.14.1 h1:UQB4HGPB6osV0SQTLymcB4TgvyWu6ZyliaW0tI/otEQ=
|
||||
github.com/rogpeppe/go-internal v1.14.1/go.mod h1:MaRKkUm5W0goXpeCfT7UZI6fk/L7L7so1lCWt35ZSgc=
|
||||
github.com/scylladb/termtables v0.0.0-20191203121021-c4c0b6d42ff4/go.mod h1:C1a7PQSMz9NShzorzCiG2fk9+xuCgLkPeCvMHYR2OWg=
|
||||
github.com/spf13/pflag v1.0.10 h1:4EBh2KAYBwaONj6b2Ye1GiHfwjqyROoF4RwYO+vPwFk=
|
||||
github.com/spf13/pflag v1.0.10/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
|
||||
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
|
||||
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
|
||||
github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U=
|
||||
github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U=
|
||||
golang.org/x/sys v0.26.0 h1:KHjCJyddX0LoSTb3J+vWpupP9p0oznkqVk/IfjymZbo=
|
||||
golang.org/x/sys v0.26.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
|
||||
golang.org/x/tools v0.26.0 h1:v/60pFQmzmT9ExmjDv2gGIfi3OqfKoEP6I5+umXlbnQ=
|
||||
golang.org/x/tools v0.26.0/go.mod h1:TPVVj70c7JJ3WCazhD8OdXcZg/og+b9+tH/KxylGwH0=
|
||||
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
||||
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
||||
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
|
||||
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
||||
|
||||
38
main_test.go
Normal file
38
main_test.go
Normal file
@@ -0,0 +1,38 @@
|
||||
/*
|
||||
Copyright © 2025 Thomas von Dein
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package main
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/rogpeppe/go-internal/testscript"
|
||||
)
|
||||
|
||||
// see https://bitfieldconsulting.com/golang/test-scripts
|
||||
|
||||
func TestMain(m *testing.M) {
|
||||
testscript.Main(m, map[string]func(){
|
||||
"ts": main,
|
||||
})
|
||||
}
|
||||
|
||||
func Test_TS(t *testing.T) {
|
||||
testscript.Run(t, testscript.Params{
|
||||
Dir: "t",
|
||||
})
|
||||
}
|
||||
10
t/simple.txtar
Normal file
10
t/simple.txtar
Normal file
@@ -0,0 +1,10 @@
|
||||
exec ts -h
|
||||
stdout 'This is ts'
|
||||
|
||||
exec ts -e
|
||||
stdout 'yesterday'
|
||||
|
||||
exec ts 3/1/2014
|
||||
stdout 'Fri Jan 03'
|
||||
|
||||
|
||||
Reference in New Issue
Block a user