111 lines
2.9 KiB
Go
111 lines
2.9 KiB
Go
// Copyright 2015 ISRG. All rights reserved
|
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
package mocks
|
|
|
|
import (
|
|
"database/sql"
|
|
"fmt"
|
|
"net"
|
|
"time"
|
|
|
|
// Load SQLite3 for test purposes
|
|
_ "github.com/letsencrypt/boulder/Godeps/_workspace/src/github.com/mattn/go-sqlite3"
|
|
"github.com/letsencrypt/boulder/Godeps/_workspace/src/github.com/miekg/dns"
|
|
gorp "github.com/letsencrypt/boulder/Godeps/_workspace/src/gopkg.in/gorp.v1"
|
|
)
|
|
|
|
// MockCADatabase is a mock
|
|
type MockCADatabase struct {
|
|
db *gorp.DbMap
|
|
count int64
|
|
}
|
|
|
|
// NewMockCertificateAuthorityDatabase is a mock
|
|
func NewMockCertificateAuthorityDatabase() (mock *MockCADatabase, err error) {
|
|
db, err := sql.Open("sqlite3", ":memory:")
|
|
dbmap := &gorp.DbMap{Db: db, Dialect: gorp.SqliteDialect{}}
|
|
mock = &MockCADatabase{db: dbmap, count: 1}
|
|
return mock, err
|
|
}
|
|
|
|
// Begin is a mock
|
|
func (cadb *MockCADatabase) Begin() (*gorp.Transaction, error) {
|
|
return cadb.db.Begin()
|
|
}
|
|
|
|
// IncrementAndGetSerial is a mock
|
|
func (cadb *MockCADatabase) IncrementAndGetSerial(*gorp.Transaction) (int64, error) {
|
|
cadb.count = cadb.count + 1
|
|
return cadb.count, nil
|
|
}
|
|
|
|
// CreateTablesIfNotExists is a mock
|
|
func (cadb *MockCADatabase) CreateTablesIfNotExists() error {
|
|
return nil
|
|
}
|
|
|
|
// MockDNS is a mock
|
|
type MockDNS struct {
|
|
}
|
|
|
|
// ExchangeOne is a mock
|
|
func (mock *MockDNS) ExchangeOne(hostname string, qt uint16) (rsp *dns.Msg, rtt time.Duration, err error) {
|
|
return nil, 0, nil
|
|
}
|
|
|
|
// LookupTXT is a mock
|
|
func (mock *MockDNS) LookupTXT(hostname string) ([]string, time.Duration, error) {
|
|
if hostname == "_acme-challenge.servfail.com" {
|
|
return nil, 0, fmt.Errorf("SERVFAIL")
|
|
}
|
|
return []string{"hostname"}, 0, nil
|
|
}
|
|
|
|
// LookupHost is a mock
|
|
func (mock *MockDNS) LookupHost(hostname string) ([]net.IP, time.Duration, time.Duration, error) {
|
|
return nil, 0, 0, nil
|
|
}
|
|
|
|
// LookupCNAME is a mock
|
|
func (mock *MockDNS) LookupCNAME(domain string) (string, time.Duration, error) {
|
|
return "hostname", 0, nil
|
|
}
|
|
|
|
// LookupCAA is a mock
|
|
func (mock *MockDNS) LookupCAA(domain string) ([]*dns.CAA, time.Duration, error) {
|
|
var results []*dns.CAA
|
|
var record dns.CAA
|
|
switch domain {
|
|
case "reserved.com":
|
|
record.Tag = "issue"
|
|
record.Value = "symantec.com"
|
|
results = append(results, &record)
|
|
case "critical.com":
|
|
record.Flag = 1
|
|
record.Tag = "issue"
|
|
record.Value = "symantec.com"
|
|
results = append(results, &record)
|
|
case "present.com":
|
|
record.Tag = "issue"
|
|
record.Value = "letsencrypt.org"
|
|
results = append(results, &record)
|
|
case "servfail.com":
|
|
return results, 0, fmt.Errorf("SERVFAIL")
|
|
}
|
|
return results, 0, nil
|
|
}
|
|
|
|
// LookupMX is a mock
|
|
func (mock *MockDNS) LookupMX(domain string) ([]string, time.Duration, error) {
|
|
switch domain {
|
|
case "letsencrypt.org":
|
|
fallthrough
|
|
case "email.com":
|
|
return []string{"mail.email.com"}, 0, nil
|
|
}
|
|
return nil, 0, nil
|
|
}
|