1
mirror of https://gitlab.com/commento/commento.git synced 2025-06-29 22:56:37 -04:00

comment_domain_path_get.go: include path in return

This commit is contained in:
Adhityaa Chandrasekar
2018-07-25 00:04:42 +05:30
parent 9fb33fbd9d
commit afeef81b29
5 changed files with 36 additions and 30 deletions

View File

@ -0,0 +1,37 @@
package main
import (
"testing"
"time"
)
func TestCommentDomainPathGetBasics(t *testing.T) {
failTestOnError(t, setupTestEnv())
commentHex, _ := commentNew("temp-commenter-hex", "example.com", "/path.html", "root", "**foo**", "approved", time.Now().UTC())
domain, path, err := commentDomainPathGet(commentHex)
if err != nil {
t.Errorf("unexpected error getting domain by hex: %v", err)
return
}
if domain != "example.com" {
t.Errorf("expected domain=example.com got domain=%s", domain)
return
}
if path != "/path.html" {
t.Errorf("expected path=/path.html got path=%s", path)
return
}
}
func TestCommentDomainGetEmpty(t *testing.T) {
failTestOnError(t, setupTestEnv())
if _, _, err := commentDomainPathGet(""); err == nil {
t.Errorf("expected error not found getting domain with empty commentHex")
return
}
}