2022-07-20 17:35:31 +00:00
|
|
|
package kiss_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"h4kor/kiss-social"
|
|
|
|
"io/ioutil"
|
2022-07-23 15:19:47 +00:00
|
|
|
"os"
|
2022-07-20 17:35:31 +00:00
|
|
|
"path"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestCreateNewPostCreatesEntryInPublic(t *testing.T) {
|
|
|
|
// Create a new user
|
|
|
|
repo, _ := kiss.CreateRepository(testRepoName())
|
|
|
|
user, _ := repo.CreateUser(randomUserName())
|
|
|
|
// Create a new post
|
2022-07-21 17:02:37 +00:00
|
|
|
user.CreateNewPost("testpost")
|
2022-07-20 17:35:31 +00:00
|
|
|
files, err := ioutil.ReadDir(path.Join(user.Dir(), "public"))
|
|
|
|
if err != nil {
|
|
|
|
t.Error("Error reading directory")
|
|
|
|
}
|
|
|
|
if len(files) < 1 {
|
|
|
|
t.Error("Post not created")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCreateNewPostMultipleCalls(t *testing.T) {
|
|
|
|
// Create a new user
|
|
|
|
repo, _ := kiss.CreateRepository(testRepoName())
|
|
|
|
user, _ := repo.CreateUser(randomUserName())
|
|
|
|
// Create a new post
|
2022-07-21 17:02:37 +00:00
|
|
|
user.CreateNewPost("testpost")
|
|
|
|
user.CreateNewPost("testpost")
|
|
|
|
user.CreateNewPost("testpost")
|
2022-07-20 17:35:31 +00:00
|
|
|
files, err := ioutil.ReadDir(path.Join(user.Dir(), "public"))
|
|
|
|
if err != nil {
|
|
|
|
t.Error("Error reading directory")
|
|
|
|
}
|
|
|
|
if len(files) < 3 {
|
|
|
|
t.Error(fmt.Sprintf("Only %d posts created", len(files)))
|
|
|
|
}
|
|
|
|
}
|
2022-07-20 19:12:18 +00:00
|
|
|
|
|
|
|
func TestCanListUserPosts(t *testing.T) {
|
|
|
|
// Create a new user
|
|
|
|
repo, _ := kiss.CreateRepository(testRepoName())
|
|
|
|
user, _ := repo.CreateUser(randomUserName())
|
|
|
|
// Create a new post
|
2022-07-21 17:02:37 +00:00
|
|
|
user.CreateNewPost("testpost")
|
|
|
|
user.CreateNewPost("testpost")
|
|
|
|
user.CreateNewPost("testpost")
|
2022-07-20 19:12:18 +00:00
|
|
|
posts, err := user.Posts()
|
|
|
|
if err != nil {
|
|
|
|
t.Error("Error reading posts")
|
|
|
|
}
|
|
|
|
if len(posts) != 3 {
|
|
|
|
t.Error("No posts found")
|
|
|
|
}
|
|
|
|
}
|
2022-07-21 17:44:07 +00:00
|
|
|
|
2022-07-23 15:19:47 +00:00
|
|
|
func TestCanListUserPostsWithSubdirectories(t *testing.T) {
|
|
|
|
// Create a new user
|
|
|
|
repo, _ := kiss.CreateRepository(testRepoName())
|
|
|
|
user, _ := repo.CreateUser(randomUserName())
|
|
|
|
// Create a new post
|
|
|
|
user.CreateNewPost("testpost")
|
|
|
|
os.Mkdir(path.Join(user.PostDir(), "foo"), 0755)
|
|
|
|
os.Mkdir(path.Join(user.PostDir(), "foo/bar"), 0755)
|
|
|
|
content := ""
|
|
|
|
content += "---\n"
|
|
|
|
content += "title: test\n"
|
|
|
|
content += "---\n"
|
|
|
|
content += "\n"
|
|
|
|
content += "Write your post here.\n"
|
|
|
|
|
|
|
|
os.WriteFile(path.Join(user.PostDir(), "foo/bar/index.md"), []byte(content), 0644)
|
|
|
|
posts, _ := user.Posts()
|
|
|
|
if contains(posts, "foo") {
|
|
|
|
t.Error("Contains non-post name: foo")
|
|
|
|
for _, p := range posts {
|
|
|
|
t.Error("\t" + p)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if !contains(posts, "foo/bar") {
|
|
|
|
t.Error("Post not found. Found: ")
|
|
|
|
for _, p := range posts {
|
|
|
|
t.Error("\t" + p)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-21 17:44:07 +00:00
|
|
|
func TestCanLoadPost(t *testing.T) {
|
|
|
|
user := getTestUser()
|
|
|
|
// Create a new post
|
|
|
|
user.CreateNewPost("testpost")
|
|
|
|
|
|
|
|
posts, _ := user.Posts()
|
|
|
|
post, _ := user.GetPost(posts[0])
|
|
|
|
if post.Title() != "testpost" {
|
|
|
|
t.Error("Wrong title, Got: " + post.Title())
|
|
|
|
}
|
|
|
|
}
|