Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ebe2079a83 | |||
| cef06bdf63 | |||
| f94c4b1abf | |||
| 021ba3b710 |
@@ -27,7 +27,7 @@ problem, usable independently or together.
|
|||||||
### Module Path
|
### Module Path
|
||||||
|
|
||||||
```
|
```
|
||||||
git.wntrmute.dev/kyle/mcdsl
|
git.wntrmute.dev/mc/mcdsl
|
||||||
```
|
```
|
||||||
|
|
||||||
### Dependencies
|
### Dependencies
|
||||||
@@ -39,7 +39,7 @@ git.wntrmute.dev/kyle/mcdsl
|
|||||||
| `github.com/pelletier/go-toml/v2` | TOML config parsing |
|
| `github.com/pelletier/go-toml/v2` | TOML config parsing |
|
||||||
| `google.golang.org/grpc` | gRPC server |
|
| `google.golang.org/grpc` | gRPC server |
|
||||||
| `github.com/klauspost/compress/zstd` | Zstandard compression for archives |
|
| `github.com/klauspost/compress/zstd` | Zstandard compression for archives |
|
||||||
| `git.wntrmute.dev/kyle/mcias/clients/go` | MCIAS client library |
|
| `git.wntrmute.dev/mc/mcias/clients/go` | MCIAS client library |
|
||||||
|
|
||||||
All dependencies are already used by existing services. MCDSL adds no new
|
All dependencies are already used by existing services. MCDSL adds no new
|
||||||
dependencies to the platform.
|
dependencies to the platform.
|
||||||
|
|||||||
96
CLAUDE.md
Normal file
96
CLAUDE.md
Normal file
@@ -0,0 +1,96 @@
|
|||||||
|
# CLAUDE.md
|
||||||
|
|
||||||
|
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
|
||||||
|
|
||||||
|
## Project Overview
|
||||||
|
|
||||||
|
MCDSL (Metacircular Dynamics Standard Library) is the shared Go library for the Metacircular platform. It extracts common patterns from production services into reusable, tested packages. MCDSL is not a deployed service — it is imported by other services.
|
||||||
|
|
||||||
|
**Module path:** `git.wntrmute.dev/mc/mcdsl`
|
||||||
|
|
||||||
|
## Build Commands
|
||||||
|
|
||||||
|
```bash
|
||||||
|
make all # vet -> lint -> test -> build
|
||||||
|
make build # go build ./...
|
||||||
|
make test # go test ./...
|
||||||
|
make vet # go vet ./...
|
||||||
|
make lint # golangci-lint run ./...
|
||||||
|
make clean # go clean ./...
|
||||||
|
```
|
||||||
|
|
||||||
|
Run a single test:
|
||||||
|
```bash
|
||||||
|
go test ./auth/ -run TestCacheExpiry
|
||||||
|
```
|
||||||
|
|
||||||
|
## Packages
|
||||||
|
|
||||||
|
| Package | Purpose |
|
||||||
|
|---------|---------|
|
||||||
|
| `auth` | MCIAS token validation with 30s SHA-256 cache |
|
||||||
|
| `db` | SQLite setup (WAL, foreign keys, busy timeout), migration runner, VACUUM INTO snapshots |
|
||||||
|
| `config` | TOML loading with env var overrides, Base config struct with standard sections |
|
||||||
|
| `httpserver` | TLS 1.3 HTTP server with chi, logging middleware, JSON helpers, graceful shutdown |
|
||||||
|
| `grpcserver` | gRPC server with TLS, auth/admin interceptors, default-deny for unmapped methods |
|
||||||
|
| `csrf` | HMAC-SHA256 double-submit cookie CSRF protection |
|
||||||
|
| `web` | Session cookies, auth middleware, template rendering for htmx UIs |
|
||||||
|
| `health` | REST and gRPC health check handlers |
|
||||||
|
| `archive` | tar.zst snapshots with SQLite-aware backup (VACUUM INTO) |
|
||||||
|
|
||||||
|
## Import Pattern
|
||||||
|
|
||||||
|
Services import individual packages with aliased imports:
|
||||||
|
|
||||||
|
```go
|
||||||
|
import (
|
||||||
|
mcdslauth "git.wntrmute.dev/mc/mcdsl/auth"
|
||||||
|
mcdsldb "git.wntrmute.dev/mc/mcdsl/db"
|
||||||
|
mcdslconfig "git.wntrmute.dev/mc/mcdsl/config"
|
||||||
|
"git.wntrmute.dev/mc/mcdsl/httpserver"
|
||||||
|
"git.wntrmute.dev/mc/mcdsl/grpcserver"
|
||||||
|
)
|
||||||
|
```
|
||||||
|
|
||||||
|
## Inter-Package Dependencies
|
||||||
|
|
||||||
|
```
|
||||||
|
archive --> db
|
||||||
|
auth --> (mcias client library)
|
||||||
|
config --> auth (for auth.Config type)
|
||||||
|
csrf --> (stdlib only)
|
||||||
|
db --> (modernc.org/sqlite)
|
||||||
|
grpcserver --> auth, config
|
||||||
|
health --> db
|
||||||
|
httpserver --> config
|
||||||
|
web --> auth, csrf
|
||||||
|
```
|
||||||
|
|
||||||
|
No circular dependencies. Each package can be imported independently except where noted.
|
||||||
|
|
||||||
|
## Key Design Decisions
|
||||||
|
|
||||||
|
- **No global state, no init().** Explicit construction, explicit errors.
|
||||||
|
- **Stdlib-compatible types.** Functions accept and return `*sql.DB`, `http.Handler`, `*slog.Logger`, `context.Context` — not custom wrappers.
|
||||||
|
- **TLS 1.3 minimum is non-configurable.** `httpserver` and `grpcserver` enforce this unconditionally.
|
||||||
|
- **Default-deny for unmapped gRPC methods.** A method not in the MethodMap is rejected, not allowed. This is the most important safety property.
|
||||||
|
- **Cookie security flags are non-configurable.** Session cookies are always `HttpOnly`, `Secure`, `SameSite=Strict`.
|
||||||
|
- **Extract, don't invent.** Every package comes from patterns proven across multiple services. No speculative abstractions.
|
||||||
|
- **Optional composition.** Services import only the packages they need.
|
||||||
|
|
||||||
|
## Critical Rules
|
||||||
|
|
||||||
|
- No CGo — all builds use `CGO_ENABLED=0`, SQLite via `modernc.org/sqlite`
|
||||||
|
- Testing uses stdlib `testing` only, real SQLite in `t.TempDir()`, no mocks for databases
|
||||||
|
- Token cache keys are SHA-256 of the raw token (never use raw token as map key)
|
||||||
|
- CSRF secrets must come from `crypto/rand`, unique per service instance
|
||||||
|
- Database file permissions are always `0600`
|
||||||
|
- Verify changes with `go build ./...` and `go test ./...` before claiming resolution
|
||||||
|
|
||||||
|
## Key Documents
|
||||||
|
|
||||||
|
- `ARCHITECTURE.md` — Full library specification with all package APIs
|
||||||
|
- `README.md` — Usage examples and quick start
|
||||||
|
- `PROJECT_PLAN.md` — Implementation phases
|
||||||
|
- `PROGRESS.md` — Development status
|
||||||
|
- `../engineering-standards.md` — Platform-wide standards (authoritative reference)
|
||||||
@@ -91,11 +91,11 @@ Remaining mcat-specific code:
|
|||||||
- `web/` — templates and static assets (unchanged)
|
- `web/` — templates and static assets (unchanged)
|
||||||
|
|
||||||
Dependencies removed:
|
Dependencies removed:
|
||||||
- `git.wntrmute.dev/kyle/mcias/clients/go` (mcdsl/auth handles MCIAS directly)
|
- `git.wntrmute.dev/mc/mcias/clients/go` (mcdsl/auth handles MCIAS directly)
|
||||||
- `github.com/pelletier/go-toml/v2` (now indirect via mcdsl/config)
|
- `github.com/pelletier/go-toml/v2` (now indirect via mcdsl/config)
|
||||||
|
|
||||||
Dependencies added:
|
Dependencies added:
|
||||||
- `git.wntrmute.dev/kyle/mcdsl` (local replace directive)
|
- `git.wntrmute.dev/mc/mcdsl` (local replace directive)
|
||||||
|
|
||||||
Result: vet clean, lint 0 issues, builds successfully.
|
Result: vet clean, lint 0 issues, builds successfully.
|
||||||
|
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ code first).
|
|||||||
|
|
||||||
## Phase 0: Project Setup
|
## Phase 0: Project Setup
|
||||||
|
|
||||||
- [ ] Initialize Go module (`git.wntrmute.dev/kyle/mcdsl`)
|
- [ ] Initialize Go module (`git.wntrmute.dev/mc/mcdsl`)
|
||||||
- [ ] Create `.golangci.yaml` (matching platform standard)
|
- [ ] Create `.golangci.yaml` (matching platform standard)
|
||||||
- [ ] Create `Makefile` with standard targets (build, test, vet, lint, all)
|
- [ ] Create `Makefile` with standard targets (build, test, vet, lint, all)
|
||||||
- [ ] Create `.gitignore`
|
- [ ] Create `.gitignore`
|
||||||
|
|||||||
10
README.md
10
README.md
@@ -25,7 +25,7 @@ it and provide only their service-specific logic.
|
|||||||
## Module Path
|
## Module Path
|
||||||
|
|
||||||
```
|
```
|
||||||
git.wntrmute.dev/kyle/mcdsl
|
git.wntrmute.dev/mc/mcdsl
|
||||||
```
|
```
|
||||||
|
|
||||||
## Packages
|
## Packages
|
||||||
@@ -46,10 +46,10 @@ git.wntrmute.dev/kyle/mcdsl
|
|||||||
|
|
||||||
```go
|
```go
|
||||||
import (
|
import (
|
||||||
"git.wntrmute.dev/kyle/mcdsl/auth"
|
"git.wntrmute.dev/mc/mcdsl/auth"
|
||||||
"git.wntrmute.dev/kyle/mcdsl/db"
|
"git.wntrmute.dev/mc/mcdsl/db"
|
||||||
"git.wntrmute.dev/kyle/mcdsl/config"
|
"git.wntrmute.dev/mc/mcdsl/config"
|
||||||
"git.wntrmute.dev/kyle/mcdsl/httpserver"
|
"git.wntrmute.dev/mc/mcdsl/httpserver"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Load config with standard sections + service-specific fields.
|
// Load config with standard sections + service-specific fields.
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ import (
|
|||||||
|
|
||||||
"github.com/klauspost/compress/zstd"
|
"github.com/klauspost/compress/zstd"
|
||||||
|
|
||||||
"git.wntrmute.dev/kyle/mcdsl/db"
|
"git.wntrmute.dev/mc/mcdsl/db"
|
||||||
)
|
)
|
||||||
|
|
||||||
// defaultExcludePatterns are always excluded from snapshots.
|
// defaultExcludePatterns are always excluded from snapshots.
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ import (
|
|||||||
"path/filepath"
|
"path/filepath"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"git.wntrmute.dev/kyle/mcdsl/db"
|
"git.wntrmute.dev/mc/mcdsl/db"
|
||||||
)
|
)
|
||||||
|
|
||||||
// setupServiceDir creates a realistic /srv/<service>/ directory.
|
// setupServiceDir creates a realistic /srv/<service>/ directory.
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ import (
|
|||||||
|
|
||||||
"github.com/pelletier/go-toml/v2"
|
"github.com/pelletier/go-toml/v2"
|
||||||
|
|
||||||
"git.wntrmute.dev/kyle/mcdsl/auth"
|
"git.wntrmute.dev/mc/mcdsl/auth"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Base contains the configuration sections common to all Metacircular
|
// Base contains the configuration sections common to all Metacircular
|
||||||
@@ -144,6 +144,8 @@ func Load[T any](path string, envPrefix string) (*T, error) {
|
|||||||
applyEnvToStruct(reflect.ValueOf(&cfg).Elem(), envPrefix)
|
applyEnvToStruct(reflect.ValueOf(&cfg).Elem(), envPrefix)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
applyPortEnv(&cfg)
|
||||||
|
|
||||||
applyBaseDefaults(&cfg)
|
applyBaseDefaults(&cfg)
|
||||||
|
|
||||||
if err := validateBase(&cfg); err != nil {
|
if err := validateBase(&cfg); err != nil {
|
||||||
@@ -239,6 +241,70 @@ func findBase(cfg any) *Base {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// applyPortEnv overrides ServerConfig.ListenAddr and ServerConfig.GRPCAddr
|
||||||
|
// from $PORT and $PORT_GRPC respectively. These environment variables are
|
||||||
|
// set by the MCP agent to assign authoritative port bindings, so they take
|
||||||
|
// precedence over both TOML values and generic env overrides.
|
||||||
|
func applyPortEnv(cfg any) {
|
||||||
|
sc := findServerConfig(cfg)
|
||||||
|
if sc == nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if port, ok := os.LookupEnv("PORT"); ok {
|
||||||
|
sc.ListenAddr = ":" + port
|
||||||
|
}
|
||||||
|
if port, ok := os.LookupEnv("PORT_GRPC"); ok {
|
||||||
|
sc.GRPCAddr = ":" + port
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// findServerConfig returns a pointer to the ServerConfig in the config
|
||||||
|
// struct. It first checks for an embedded Base (which contains Server),
|
||||||
|
// then walks the struct tree via reflection to find any ServerConfig field
|
||||||
|
// directly (e.g., the Metacrypt pattern where ServerConfig is embedded
|
||||||
|
// without Base).
|
||||||
|
func findServerConfig(cfg any) *ServerConfig {
|
||||||
|
if base := findBase(cfg); base != nil {
|
||||||
|
return &base.Server
|
||||||
|
}
|
||||||
|
|
||||||
|
return findServerConfigReflect(reflect.ValueOf(cfg))
|
||||||
|
}
|
||||||
|
|
||||||
|
// findServerConfigReflect walks the struct tree to find a ServerConfig field.
|
||||||
|
func findServerConfigReflect(v reflect.Value) *ServerConfig {
|
||||||
|
if v.Kind() == reflect.Ptr {
|
||||||
|
v = v.Elem()
|
||||||
|
}
|
||||||
|
if v.Kind() != reflect.Struct {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
scType := reflect.TypeOf(ServerConfig{})
|
||||||
|
t := v.Type()
|
||||||
|
for i := range t.NumField() {
|
||||||
|
field := t.Field(i)
|
||||||
|
fv := v.Field(i)
|
||||||
|
|
||||||
|
if field.Type == scType {
|
||||||
|
sc, ok := fv.Addr().Interface().(*ServerConfig)
|
||||||
|
if ok {
|
||||||
|
return sc
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Recurse into embedded or nested structs.
|
||||||
|
if fv.Kind() == reflect.Struct && field.Type != scType {
|
||||||
|
if sc := findServerConfigReflect(fv); sc != nil {
|
||||||
|
return sc
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
// applyEnvToStruct recursively walks a struct and overrides field values
|
// applyEnvToStruct recursively walks a struct and overrides field values
|
||||||
// from environment variables. The env variable name is built from the
|
// from environment variables. The env variable name is built from the
|
||||||
// prefix and the toml tag: PREFIX_SECTION_FIELD (uppercased).
|
// prefix and the toml tag: PREFIX_SECTION_FIELD (uppercased).
|
||||||
|
|||||||
@@ -401,3 +401,109 @@ func TestEmptyEnvPrefix(t *testing.T) {
|
|||||||
t.Fatalf("ListenAddr = %q, want %q", cfg.Server.ListenAddr, ":8443")
|
t.Fatalf("ListenAddr = %q, want %q", cfg.Server.ListenAddr, ":8443")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// directServerConfig embeds ServerConfig without Base (Metacrypt pattern).
|
||||||
|
type directServerConfig struct {
|
||||||
|
Server ServerConfig `toml:"server"`
|
||||||
|
Extra string `toml:"extra"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestPortEnvOverridesListenAddr(t *testing.T) {
|
||||||
|
path := writeTOML(t, minimalTOML)
|
||||||
|
t.Setenv("PORT", "9999")
|
||||||
|
|
||||||
|
cfg, err := Load[testConfig](path, "TEST")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("Load: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if cfg.Server.ListenAddr != ":9999" {
|
||||||
|
t.Fatalf("ListenAddr = %q, want %q", cfg.Server.ListenAddr, ":9999")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestPortGRPCEnvOverridesGRPCAddr(t *testing.T) {
|
||||||
|
path := writeTOML(t, minimalTOML)
|
||||||
|
t.Setenv("PORT_GRPC", "9998")
|
||||||
|
|
||||||
|
cfg, err := Load[testConfig](path, "TEST")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("Load: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if cfg.Server.GRPCAddr != ":9998" {
|
||||||
|
t.Fatalf("GRPCAddr = %q, want %q", cfg.Server.GRPCAddr, ":9998")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestPortEnvOverridesTOMLValue(t *testing.T) {
|
||||||
|
// fullTOML sets listen_addr = ":8443" and grpc_addr = ":9443".
|
||||||
|
path := writeTOML(t, fullTOML)
|
||||||
|
t.Setenv("PORT", "9999")
|
||||||
|
|
||||||
|
cfg, err := Load[testConfig](path, "TEST")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("Load: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if cfg.Server.ListenAddr != ":9999" {
|
||||||
|
t.Fatalf("ListenAddr = %q, want %q ($PORT should override TOML)", cfg.Server.ListenAddr, ":9999")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestPortEnvOverridesGenericEnv(t *testing.T) {
|
||||||
|
path := writeTOML(t, minimalTOML)
|
||||||
|
t.Setenv("TEST_SERVER_LISTEN_ADDR", ":7777")
|
||||||
|
t.Setenv("PORT", "9999")
|
||||||
|
|
||||||
|
cfg, err := Load[testConfig](path, "TEST")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("Load: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if cfg.Server.ListenAddr != ":9999" {
|
||||||
|
t.Fatalf("ListenAddr = %q, want %q ($PORT should override generic env)", cfg.Server.ListenAddr, ":9999")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestNoPortEnvNoChange(t *testing.T) {
|
||||||
|
path := writeTOML(t, minimalTOML)
|
||||||
|
|
||||||
|
cfg, err := Load[testConfig](path, "TEST")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("Load: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
// minimalTOML sets listen_addr = ":8443", no $PORT set.
|
||||||
|
if cfg.Server.ListenAddr != ":8443" {
|
||||||
|
t.Fatalf("ListenAddr = %q, want %q (TOML value preserved without $PORT)", cfg.Server.ListenAddr, ":8443")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestPortEnvDirectServerConfig(t *testing.T) {
|
||||||
|
// Test the Metacrypt pattern: ServerConfig embedded without Base.
|
||||||
|
toml := `
|
||||||
|
[server]
|
||||||
|
listen_addr = ":8443"
|
||||||
|
tls_cert = "/tmp/cert.pem"
|
||||||
|
tls_key = "/tmp/key.pem"
|
||||||
|
grpc_addr = ":9443"
|
||||||
|
|
||||||
|
extra = "value"
|
||||||
|
`
|
||||||
|
path := writeTOML(t, toml)
|
||||||
|
t.Setenv("PORT", "5555")
|
||||||
|
t.Setenv("PORT_GRPC", "5556")
|
||||||
|
|
||||||
|
cfg, err := Load[directServerConfig](path, "TEST")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("Load: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if cfg.Server.ListenAddr != ":5555" {
|
||||||
|
t.Fatalf("ListenAddr = %q, want %q ($PORT on direct ServerConfig)", cfg.Server.ListenAddr, ":5555")
|
||||||
|
}
|
||||||
|
if cfg.Server.GRPCAddr != ":5556" {
|
||||||
|
t.Fatalf("GRPCAddr = %q, want %q ($PORT_GRPC on direct ServerConfig)", cfg.Server.GRPCAddr, ":5556")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
2
go.mod
2
go.mod
@@ -1,4 +1,4 @@
|
|||||||
module git.wntrmute.dev/kyle/mcdsl
|
module git.wntrmute.dev/mc/mcdsl
|
||||||
|
|
||||||
go 1.25.7
|
go 1.25.7
|
||||||
|
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ import (
|
|||||||
"google.golang.org/grpc/metadata"
|
"google.golang.org/grpc/metadata"
|
||||||
"google.golang.org/grpc/status"
|
"google.golang.org/grpc/status"
|
||||||
|
|
||||||
"git.wntrmute.dev/kyle/mcdsl/auth"
|
"git.wntrmute.dev/mc/mcdsl/auth"
|
||||||
)
|
)
|
||||||
|
|
||||||
// MethodMap classifies gRPC methods for access control.
|
// MethodMap classifies gRPC methods for access control.
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ import (
|
|||||||
"google.golang.org/grpc/metadata"
|
"google.golang.org/grpc/metadata"
|
||||||
"google.golang.org/grpc/status"
|
"google.golang.org/grpc/status"
|
||||||
|
|
||||||
"git.wntrmute.dev/kyle/mcdsl/auth"
|
"git.wntrmute.dev/mc/mcdsl/auth"
|
||||||
)
|
)
|
||||||
|
|
||||||
func mockMCIAS(t *testing.T) *httptest.Server {
|
func mockMCIAS(t *testing.T) *httptest.Server {
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ import (
|
|||||||
|
|
||||||
"google.golang.org/grpc"
|
"google.golang.org/grpc"
|
||||||
|
|
||||||
"git.wntrmute.dev/kyle/mcdsl/db"
|
"git.wntrmute.dev/mc/mcdsl/db"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestHandlerHealthy(t *testing.T) {
|
func TestHandlerHealthy(t *testing.T) {
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ import (
|
|||||||
|
|
||||||
"github.com/go-chi/chi/v5"
|
"github.com/go-chi/chi/v5"
|
||||||
|
|
||||||
"git.wntrmute.dev/kyle/mcdsl/config"
|
"git.wntrmute.dev/mc/mcdsl/config"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Server wraps a chi router and an http.Server with the standard
|
// Server wraps a chi router and an http.Server with the standard
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ import (
|
|||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"git.wntrmute.dev/kyle/mcdsl/config"
|
"git.wntrmute.dev/mc/mcdsl/config"
|
||||||
)
|
)
|
||||||
|
|
||||||
func testConfig() config.ServerConfig {
|
func testConfig() config.ServerConfig {
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ import (
|
|||||||
"io/fs"
|
"io/fs"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
"git.wntrmute.dev/kyle/mcdsl/auth"
|
"git.wntrmute.dev/mc/mcdsl/auth"
|
||||||
)
|
)
|
||||||
|
|
||||||
// SetSessionCookie sets a session cookie with the standard Metacircular
|
// SetSessionCookie sets a session cookie with the standard Metacircular
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ import (
|
|||||||
"testing"
|
"testing"
|
||||||
"testing/fstest"
|
"testing/fstest"
|
||||||
|
|
||||||
"git.wntrmute.dev/kyle/mcdsl/auth"
|
"git.wntrmute.dev/mc/mcdsl/auth"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestSetSessionCookie(t *testing.T) {
|
func TestSetSessionCookie(t *testing.T) {
|
||||||
|
|||||||
Reference in New Issue
Block a user