remove ioutil
This commit is contained in:
parent
0a3af85b02
commit
a42da82516
4
post.go
4
post.go
|
@ -3,8 +3,8 @@ package owl
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"errors"
|
"errors"
|
||||||
"io/ioutil"
|
|
||||||
"net/url"
|
"net/url"
|
||||||
|
"os"
|
||||||
"path"
|
"path"
|
||||||
"sort"
|
"sort"
|
||||||
"sync"
|
"sync"
|
||||||
|
@ -155,7 +155,7 @@ func (post *Post) Meta() PostMeta {
|
||||||
|
|
||||||
func (post *Post) Content() []byte {
|
func (post *Post) Content() []byte {
|
||||||
// read file
|
// read file
|
||||||
data, _ := ioutil.ReadFile(post.ContentFile())
|
data, _ := os.ReadFile(post.ContentFile())
|
||||||
return data
|
return data
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,6 @@ package owl
|
||||||
import (
|
import (
|
||||||
_ "embed"
|
_ "embed"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io/ioutil"
|
|
||||||
"os"
|
"os"
|
||||||
"path"
|
"path"
|
||||||
)
|
)
|
||||||
|
@ -102,7 +101,7 @@ func (repo Repository) FullUrl() string {
|
||||||
func (repo Repository) Template() (string, error) {
|
func (repo Repository) Template() (string, error) {
|
||||||
// load base.html
|
// load base.html
|
||||||
path := path.Join(repo.Dir(), "base.html")
|
path := path.Join(repo.Dir(), "base.html")
|
||||||
base_html, err := ioutil.ReadFile(path)
|
base_html, err := os.ReadFile(path)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return "", err
|
return "", err
|
||||||
}
|
}
|
||||||
|
|
3
user.go
3
user.go
|
@ -2,7 +2,6 @@ package owl
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"io/ioutil"
|
|
||||||
"net/url"
|
"net/url"
|
||||||
"os"
|
"os"
|
||||||
"path"
|
"path"
|
||||||
|
@ -187,7 +186,7 @@ func (user User) CreateNewPost(title string, draft bool) (Post, error) {
|
||||||
func (user User) Template() (string, error) {
|
func (user User) Template() (string, error) {
|
||||||
// load base.html
|
// load base.html
|
||||||
path := path.Join(user.Dir(), "meta", "base.html")
|
path := path.Join(user.Dir(), "meta", "base.html")
|
||||||
base_html, err := ioutil.ReadFile(path)
|
base_html, err := os.ReadFile(path)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return "", err
|
return "", err
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,7 +3,6 @@ package owl_test
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"h4kor/owl-blogs"
|
"h4kor/owl-blogs"
|
||||||
"io/ioutil"
|
|
||||||
"os"
|
"os"
|
||||||
"path"
|
"path"
|
||||||
"testing"
|
"testing"
|
||||||
|
@ -15,7 +14,7 @@ func TestCreateNewPostCreatesEntryInPublic(t *testing.T) {
|
||||||
user, _ := repo.CreateUser(randomUserName())
|
user, _ := repo.CreateUser(randomUserName())
|
||||||
// Create a new post
|
// Create a new post
|
||||||
user.CreateNewPost("testpost", false)
|
user.CreateNewPost("testpost", false)
|
||||||
files, err := ioutil.ReadDir(path.Join(user.Dir(), "public"))
|
files, err := os.ReadDir(path.Join(user.Dir(), "public"))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Error("Error reading directory")
|
t.Error("Error reading directory")
|
||||||
}
|
}
|
||||||
|
@ -55,7 +54,7 @@ func TestCreateNewPostMultipleCalls(t *testing.T) {
|
||||||
user.CreateNewPost("testpost", false)
|
user.CreateNewPost("testpost", false)
|
||||||
user.CreateNewPost("testpost", false)
|
user.CreateNewPost("testpost", false)
|
||||||
user.CreateNewPost("testpost", false)
|
user.CreateNewPost("testpost", false)
|
||||||
files, err := ioutil.ReadDir(path.Join(user.Dir(), "public"))
|
files, err := os.ReadDir(path.Join(user.Dir(), "public"))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Error("Error reading directory")
|
t.Error("Error reading directory")
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue