mirror of
https://github.com/documize/community.git
synced 2025-07-22 06:39:43 +02:00
restructure directories
This commit is contained in:
parent
7e4ed6545b
commit
a2ce777762
159 changed files with 320 additions and 323 deletions
82
core/section/section_test.go
Normal file
82
core/section/section_test.go
Normal file
|
@ -0,0 +1,82 @@
|
|||
// Copyright 2016 Documize Inc. <legal@documize.com>. All rights reserved.
|
||||
//
|
||||
// This software (Documize Community Edition) is licensed under
|
||||
// GNU AGPL v3 http://www.gnu.org/licenses/agpl-3.0.en.html
|
||||
//
|
||||
// You can operate outside the AGPL restrictions by purchasing
|
||||
// Documize Enterprise Edition and obtaining a commercial license
|
||||
// by contacting <sales@documize.com>.
|
||||
//
|
||||
// https://documize.com
|
||||
|
||||
package section
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
"testing"
|
||||
|
||||
"github.com/documize/community/core/section/provider"
|
||||
)
|
||||
|
||||
type testsection provider.TypeMeta
|
||||
|
||||
var ts testsection
|
||||
|
||||
func init() {
|
||||
provider.Register("testsection", &ts)
|
||||
}
|
||||
|
||||
// Command is an end-point...
|
||||
func (ts *testsection) Command(ctx *provider.Context, w http.ResponseWriter, r *http.Request) {}
|
||||
|
||||
var didRefresh bool
|
||||
|
||||
// Refresh existing data, returning data in the format of the target system
|
||||
func (ts *testsection) Refresh(ctx *provider.Context, meta, data string) string {
|
||||
didRefresh = true
|
||||
return ""
|
||||
}
|
||||
|
||||
// Render converts data in the target system format into HTML
|
||||
func (*testsection) Render(ctx *provider.Context, meta, data string) string {
|
||||
return "testsection " + data
|
||||
}
|
||||
|
||||
func (*testsection) Meta() provider.TypeMeta {
|
||||
section := provider.TypeMeta{}
|
||||
|
||||
section.ID = "TestGUID"
|
||||
section.Title = "TestSection"
|
||||
section.Description = "A Test Section"
|
||||
section.ContentType = "testsection"
|
||||
|
||||
return section
|
||||
}
|
||||
|
||||
func TestSection(t *testing.T) {
|
||||
ctx := provider.NewContext("_orgid_", "_userid_")
|
||||
|
||||
if _, ok := provider.Refresh("testsection", ctx, "", ""); !ok {
|
||||
t.Error("did not find 'testsection' smart section (1)")
|
||||
}
|
||||
if !didRefresh {
|
||||
t.Error("did not run the test Refresh method")
|
||||
}
|
||||
out, ok := provider.Render("testsection", ctx, "meta", "dingbat")
|
||||
if !ok {
|
||||
t.Error("did not find 'testsection' smart section (2)")
|
||||
}
|
||||
if out != "testsection dingbat" {
|
||||
t.Error("wrong output from Render")
|
||||
}
|
||||
|
||||
sects := provider.GetSectionMeta()
|
||||
for _, v := range sects {
|
||||
if v.Title == "TestSection" {
|
||||
return
|
||||
}
|
||||
//t.Logf("%v %v", v.Order, v.Title)
|
||||
}
|
||||
t.Error("TestSection not in meta output")
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue