commands: Support human-readable YAML boolean values in undraft
authorVictor Kropp <victor.kropp@gmail.com>
Tue, 14 Mar 2017 16:46:33 +0000 (17:46 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 3 Jul 2017 21:26:01 +0000 (23:26 +0200)
commands/undraft.go
commands/undraft_test.go

index 2a3b853602568da03e4262f5d79585a6552dc3ef..8d4bffb93f8e34d01260e48149df5eaaea3d702e 100644 (file)
@@ -25,8 +25,8 @@ import (
 
 var undraftCmd = &cobra.Command{
        Use:   "undraft path/to/content",
-       Short: "Undraft changes the content's draft status from 'True' to 'False'",
-       Long: `Undraft changes the content's draft status from 'True' to 'False'
+       Short: "Undraft resets the content's draft status",
+       Long: `Undraft resets the content's draft status
 and updates the date to the current date and time.
 If the content's draft status is 'False', nothing is done.`,
        RunE: Undraft,
@@ -138,14 +138,12 @@ L:
        for _, v := range fmLines {
                pos := bytes.Index(v, []byte("draft"))
                if pos != -1 {
-                       v = bytes.Replace(v, []byte("true"), []byte("false"), 1)
-                       goto write
+                       continue
                }
                pos = bytes.Index(v, []byte("date"))
                if pos != -1 { // if date field wasn't found, add it
                        v = bytes.Replace(v, []byte(date), []byte(time.Now().Format(time.RFC3339)), 1)
                }
-       write:
                buff.Write(v)
                buff.Write(lineEnding)
        }
index 7f32c7e20a2a5097dd5988c99d06cb1cbea447d2..259e3479bcccf8a08d589a6a53eb03e8165eb64c 100644 (file)
@@ -25,12 +25,13 @@ import (
 )
 
 var (
-       jsonFM      = "{\n \"date\": \"12-04-06\",\n \"title\": \"test json\"\n}"
-       jsonDraftFM = "{\n \"draft\": true,\n \"date\": \"12-04-06\",\n \"title\":\"test json\"\n}"
-       tomlFM      = "+++\n date= \"12-04-06\"\n title= \"test toml\"\n+++"
-       tomlDraftFM = "+++\n draft= true\n date= \"12-04-06\"\n title=\"test toml\"\n+++"
-       yamlFM      = "---\n date: \"12-04-06\"\n title: \"test yaml\"\n---"
-       yamlDraftFM = "---\n draft: true\n date: \"12-04-06\"\n title: \"test yaml\"\n---"
+       jsonFM         = "{\n \"date\": \"12-04-06\",\n \"title\": \"test json\"\n}"
+       jsonDraftFM    = "{\n \"draft\": true,\n \"date\": \"12-04-06\",\n \"title\":\"test json\"\n}"
+       tomlFM         = "+++\n date= \"12-04-06\"\n title= \"test toml\"\n+++"
+       tomlDraftFM    = "+++\n draft= true\n date= \"12-04-06\"\n title=\"test toml\"\n+++"
+       yamlFM         = "---\n date: \"12-04-06\"\n title: \"test yaml\"\n---"
+       yamlDraftFM    = "---\n draft: true\n date: \"12-04-06\"\n title: \"test yaml\"\n---"
+       yamlYesDraftFM = "---\n draft: yes\n date: \"12-04-06\"\n title: \"test yaml\"\n---"
 )
 
 func TestUndraftContent(t *testing.T) {
@@ -44,6 +45,7 @@ func TestUndraftContent(t *testing.T) {
                {tomlDraftFM, ""},
                {yamlFM, "not a Draft: nothing was done"},
                {yamlDraftFM, ""},
+               {yamlYesDraftFM, ""},
        }
 
        for i, test := range tests {