mirror of https://github.com/perkeep/perkeep.git
108 lines
2.5 KiB
Go
108 lines
2.5 KiB
Go
/*
|
|
Copyright 2011 Google Inc.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package mongo_test
|
|
|
|
import (
|
|
"errors"
|
|
"sync"
|
|
"testing"
|
|
"time"
|
|
|
|
"camlistore.org/pkg/index"
|
|
"camlistore.org/pkg/index/indextest"
|
|
"camlistore.org/pkg/index/mongo"
|
|
"camlistore.org/pkg/test"
|
|
)
|
|
|
|
var (
|
|
once sync.Once
|
|
mongoNotAvailable bool
|
|
)
|
|
|
|
func checkMongoUp() {
|
|
mgw := &mongo.MongoWrapper{
|
|
Servers: "localhost",
|
|
}
|
|
mongoNotAvailable = !mgw.TestConnection(500 * time.Millisecond)
|
|
}
|
|
|
|
func initMongoIndex() *index.Index {
|
|
// connect without credentials and wipe the database
|
|
mgw := &mongo.MongoWrapper{
|
|
Servers: "localhost",
|
|
Database: "camlitest",
|
|
Collection: "keys",
|
|
}
|
|
idx, err := mongo.NewMongoIndex(mgw)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
err = idx.Storage().Delete("")
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
// create user and connect with credentials
|
|
err = mongo.AddUser(mgw, "root", "root")
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
mgw = &mongo.MongoWrapper{
|
|
Servers: "localhost",
|
|
Database: "camlitest",
|
|
Collection: "keys",
|
|
User: "root",
|
|
Password: "root",
|
|
}
|
|
return idx
|
|
}
|
|
|
|
type mongoTester struct{}
|
|
|
|
func (mongoTester) test(t *testing.T, tfn func(*testing.T, func() *index.Index)) {
|
|
once.Do(checkMongoUp)
|
|
if mongoNotAvailable {
|
|
err := errors.New("Not running; start a mongoDB daemon on the standard port (27017). The \"keys\" collection in the \"camlitest\" database will be used.")
|
|
test.DependencyErrorOrSkip(t)
|
|
t.Fatalf("Mongo not available locally for testing: %v", err)
|
|
}
|
|
tfn(t, initMongoIndex)
|
|
}
|
|
|
|
func TestIndex_Mongo(t *testing.T) {
|
|
mongoTester{}.test(t, indextest.Index)
|
|
}
|
|
|
|
func TestPathsOfSignerTarget_Mongo(t *testing.T) {
|
|
mongoTester{}.test(t, indextest.PathsOfSignerTarget)
|
|
}
|
|
|
|
func TestFiles_Mongo(t *testing.T) {
|
|
mongoTester{}.test(t, indextest.Files)
|
|
}
|
|
|
|
func TestEdgesTo_Mongo(t *testing.T) {
|
|
mongoTester{}.test(t, indextest.EdgesTo)
|
|
}
|
|
|
|
func TestIsDeleted_Mongo(t *testing.T) {
|
|
mongoTester{}.test(t, indextest.IsDeleted)
|
|
}
|
|
|
|
func TestDeletedAt_Mongo(t *testing.T) {
|
|
mongoTester{}.test(t, indextest.DeletedAt)
|
|
}
|