2022-09-05 18:34:24 +00:00
|
|
|
package web_test
|
2022-08-06 18:17:39 +00:00
|
|
|
|
|
|
|
import (
|
2022-09-05 18:50:46 +00:00
|
|
|
"h4kor/owl-blogs"
|
2022-09-05 18:34:24 +00:00
|
|
|
main "h4kor/owl-blogs/cmd/owl/web"
|
2022-08-06 18:17:39 +00:00
|
|
|
"net/http"
|
|
|
|
"net/http/httptest"
|
|
|
|
"os"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestRedirectOnAliases(t *testing.T) {
|
2022-09-05 18:50:46 +00:00
|
|
|
repo := getTestRepo(owl.RepoConfig{})
|
2022-08-06 18:17:39 +00:00
|
|
|
user, _ := repo.CreateUser("test-1")
|
|
|
|
post, _ := user.CreateNewPost("post-1")
|
|
|
|
|
|
|
|
content := "---\n"
|
|
|
|
content += "title: Test\n"
|
|
|
|
content += "aliases: \n"
|
|
|
|
content += " - /foo/bar\n"
|
|
|
|
content += " - /foo/baz\n"
|
|
|
|
content += "---\n"
|
|
|
|
content += "This is a test"
|
|
|
|
os.WriteFile(post.ContentFile(), []byte(content), 0644)
|
|
|
|
|
|
|
|
// Create Request and Response
|
|
|
|
req, err := http.NewRequest("GET", "/foo/bar", nil)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
rr := httptest.NewRecorder()
|
2022-08-06 18:22:09 +00:00
|
|
|
router := main.Router(&repo)
|
2022-08-06 18:17:39 +00:00
|
|
|
router.ServeHTTP(rr, req)
|
|
|
|
|
|
|
|
// Check the status code is what we expect.
|
|
|
|
if status := rr.Code; status != http.StatusMovedPermanently {
|
|
|
|
t.Errorf("handler returned wrong status code: got %v want %v",
|
|
|
|
status, http.StatusMovedPermanently)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check that Location header is set correctly
|
|
|
|
if rr.Header().Get("Location") != post.UrlPath() {
|
|
|
|
t.Errorf("Location header is not set correctly, expected: %v Got: %v",
|
|
|
|
post.UrlPath(),
|
|
|
|
rr.Header().Get("Location"),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
2022-08-06 18:18:49 +00:00
|
|
|
|
|
|
|
func TestNoRedirectOnNonExistingAliases(t *testing.T) {
|
2022-09-05 18:50:46 +00:00
|
|
|
repo := getTestRepo(owl.RepoConfig{})
|
2022-08-06 18:18:49 +00:00
|
|
|
user, _ := repo.CreateUser("test-1")
|
|
|
|
post, _ := user.CreateNewPost("post-1")
|
|
|
|
|
|
|
|
content := "---\n"
|
|
|
|
content += "title: Test\n"
|
|
|
|
content += "aliases: \n"
|
|
|
|
content += " - /foo/bar\n"
|
|
|
|
content += " - /foo/baz\n"
|
|
|
|
content += "---\n"
|
|
|
|
content += "This is a test"
|
|
|
|
os.WriteFile(post.ContentFile(), []byte(content), 0644)
|
|
|
|
|
|
|
|
// Create Request and Response
|
|
|
|
req, err := http.NewRequest("GET", "/foo/bar2", nil)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
rr := httptest.NewRecorder()
|
2022-08-06 18:22:09 +00:00
|
|
|
router := main.Router(&repo)
|
2022-08-06 18:18:49 +00:00
|
|
|
router.ServeHTTP(rr, req)
|
|
|
|
|
|
|
|
// Check the status code is what we expect.
|
|
|
|
if status := rr.Code; status != http.StatusNotFound {
|
|
|
|
t.Errorf("handler returned wrong status code: got %v want %v",
|
|
|
|
status, http.StatusNotFound)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2022-08-13 09:26:17 +00:00
|
|
|
|
|
|
|
func TestNoRedirectIfValidPostUrl(t *testing.T) {
|
2022-09-05 18:50:46 +00:00
|
|
|
repo := getTestRepo(owl.RepoConfig{})
|
2022-08-13 09:26:17 +00:00
|
|
|
user, _ := repo.CreateUser("test-1")
|
|
|
|
post, _ := user.CreateNewPost("post-1")
|
|
|
|
post2, _ := user.CreateNewPost("post-2")
|
|
|
|
|
|
|
|
content := "---\n"
|
|
|
|
content += "title: Test\n"
|
|
|
|
content += "aliases: \n"
|
|
|
|
content += " - " + post2.UrlPath() + "\n"
|
|
|
|
content += "---\n"
|
|
|
|
content += "This is a test"
|
|
|
|
os.WriteFile(post.ContentFile(), []byte(content), 0644)
|
|
|
|
|
|
|
|
// Create Request and Response
|
|
|
|
req, err := http.NewRequest("GET", post2.UrlPath(), nil)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
rr := httptest.NewRecorder()
|
|
|
|
router := main.Router(&repo)
|
|
|
|
router.ServeHTTP(rr, req)
|
|
|
|
|
|
|
|
// Check the status code is what we expect.
|
|
|
|
if status := rr.Code; status != http.StatusOK {
|
|
|
|
t.Errorf("handler returned wrong status code: got %v want %v",
|
|
|
|
status, http.StatusOK)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestRedirectIfInvalidPostUrl(t *testing.T) {
|
2022-09-05 18:50:46 +00:00
|
|
|
repo := getTestRepo(owl.RepoConfig{})
|
2022-08-13 09:26:17 +00:00
|
|
|
user, _ := repo.CreateUser("test-1")
|
|
|
|
post, _ := user.CreateNewPost("post-1")
|
|
|
|
|
|
|
|
content := "---\n"
|
|
|
|
content += "title: Test\n"
|
|
|
|
content += "aliases: \n"
|
|
|
|
content += " - " + user.UrlPath() + "posts/not-a-real-post/" + "\n"
|
|
|
|
content += "---\n"
|
|
|
|
content += "This is a test"
|
|
|
|
os.WriteFile(post.ContentFile(), []byte(content), 0644)
|
|
|
|
|
|
|
|
// Create Request and Response
|
|
|
|
req, err := http.NewRequest("GET", user.UrlPath()+"posts/not-a-real-post/", nil)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
rr := httptest.NewRecorder()
|
|
|
|
router := main.Router(&repo)
|
|
|
|
router.ServeHTTP(rr, req)
|
|
|
|
|
|
|
|
// Check the status code is what we expect.
|
|
|
|
if status := rr.Code; status != http.StatusMovedPermanently {
|
|
|
|
t.Errorf("handler returned wrong status code: got %v want %v",
|
|
|
|
status, http.StatusMovedPermanently)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestRedirectIfInvalidUserUrl(t *testing.T) {
|
2022-09-05 18:50:46 +00:00
|
|
|
repo := getTestRepo(owl.RepoConfig{})
|
2022-08-13 09:26:17 +00:00
|
|
|
user, _ := repo.CreateUser("test-1")
|
|
|
|
post, _ := user.CreateNewPost("post-1")
|
|
|
|
|
|
|
|
content := "---\n"
|
|
|
|
content += "title: Test\n"
|
|
|
|
content += "aliases: \n"
|
|
|
|
content += " - /user/not-real/ \n"
|
|
|
|
content += "---\n"
|
|
|
|
content += "This is a test"
|
|
|
|
os.WriteFile(post.ContentFile(), []byte(content), 0644)
|
|
|
|
|
|
|
|
// Create Request and Response
|
|
|
|
req, err := http.NewRequest("GET", "/user/not-real/", nil)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
rr := httptest.NewRecorder()
|
|
|
|
router := main.Router(&repo)
|
|
|
|
router.ServeHTTP(rr, req)
|
|
|
|
|
|
|
|
// Check the status code is what we expect.
|
|
|
|
if status := rr.Code; status != http.StatusMovedPermanently {
|
|
|
|
t.Errorf("handler returned wrong status code: got %v want %v",
|
|
|
|
status, http.StatusMovedPermanently)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestRedirectIfInvalidMediaUrl(t *testing.T) {
|
2022-09-05 18:50:46 +00:00
|
|
|
repo := getTestRepo(owl.RepoConfig{})
|
2022-08-13 09:26:17 +00:00
|
|
|
user, _ := repo.CreateUser("test-1")
|
|
|
|
post, _ := user.CreateNewPost("post-1")
|
|
|
|
|
|
|
|
content := "---\n"
|
|
|
|
content += "title: Test\n"
|
|
|
|
content += "aliases: \n"
|
|
|
|
content += " - " + post.UrlMediaPath("not-real") + "\n"
|
|
|
|
content += "---\n"
|
|
|
|
content += "This is a test"
|
|
|
|
os.WriteFile(post.ContentFile(), []byte(content), 0644)
|
|
|
|
|
|
|
|
// Create Request and Response
|
|
|
|
req, err := http.NewRequest("GET", post.UrlMediaPath("not-real"), nil)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
rr := httptest.NewRecorder()
|
|
|
|
router := main.Router(&repo)
|
|
|
|
router.ServeHTTP(rr, req)
|
|
|
|
|
|
|
|
// Check the status code is what we expect.
|
|
|
|
if status := rr.Code; status != http.StatusMovedPermanently {
|
|
|
|
t.Errorf("handler returned wrong status code: got %v want %v",
|
|
|
|
status, http.StatusMovedPermanently)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2022-08-21 16:15:33 +00:00
|
|
|
|
|
|
|
func TestDeepAliasInSingleUserMode(t *testing.T) {
|
2022-09-05 18:50:46 +00:00
|
|
|
repo := getTestRepo(owl.RepoConfig{SingleUser: "test-1"})
|
2022-08-21 16:15:33 +00:00
|
|
|
user, _ := repo.CreateUser("test-1")
|
|
|
|
post, _ := user.CreateNewPost("post-1")
|
|
|
|
|
|
|
|
content := "---\n"
|
|
|
|
content += "title: Create tileable textures with GIMP\n"
|
|
|
|
content += "author: h4kor\n"
|
|
|
|
content += "type: post\n"
|
|
|
|
content += "date: Tue, 13 Sep 2016 16:19:09 +0000\n"
|
|
|
|
content += "aliases:\n"
|
|
|
|
content += " - /2016/09/13/create-tileable-textures-with-gimp/\n"
|
|
|
|
content += "categories:\n"
|
|
|
|
content += " - GameDev\n"
|
|
|
|
content += "tags:\n"
|
|
|
|
content += " - gamedev\n"
|
|
|
|
content += " - textures\n"
|
|
|
|
content += "---\n"
|
|
|
|
content += "This is a test"
|
|
|
|
os.WriteFile(post.ContentFile(), []byte(content), 0644)
|
|
|
|
|
|
|
|
// Create Request and Response
|
|
|
|
req, err := http.NewRequest("GET", "/2016/09/13/create-tileable-textures-with-gimp/", nil)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
rr := httptest.NewRecorder()
|
|
|
|
router := main.SingleUserRouter(&repo)
|
|
|
|
router.ServeHTTP(rr, req)
|
|
|
|
|
|
|
|
// Check the status code is what we expect.
|
|
|
|
if status := rr.Code; status != http.StatusMovedPermanently {
|
|
|
|
t.Errorf("handler returned wrong status code: got %v want %v",
|
|
|
|
status, http.StatusMovedPermanently)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|