blob: 7a3f8f95093d17e2b1984b87d98113ab49fa5309 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
|
# SeaweedFS S3 IAM Integration Tests Makefile
.PHONY: all test clean setup start-services stop-services wait-for-services help
# Default target
all: test
# Test configuration
WEED_BINARY ?= $(shell go env GOPATH)/bin/weed
LOG_LEVEL ?= 2
S3_PORT ?= 8333
FILER_PORT ?= 8888
MASTER_PORT ?= 9333
VOLUME_PORT ?= 8081
TEST_TIMEOUT ?= 30m
# Service PIDs
MASTER_PID_FILE = /tmp/weed-master.pid
VOLUME_PID_FILE = /tmp/weed-volume.pid
FILER_PID_FILE = /tmp/weed-filer.pid
S3_PID_FILE = /tmp/weed-s3.pid
help: ## Show this help message
@echo "SeaweedFS S3 IAM Integration Tests"
@echo ""
@echo "Usage:"
@echo " make [target]"
@echo ""
@echo "Standard Targets:"
@awk 'BEGIN {FS = ":.*?## "} /^[a-zA-Z_-]+:.*?## / {printf " %-25s %s\n", $$1, $$2}' $(MAKEFILE_LIST) | head -20
@echo ""
@echo "New Test Targets (Previously Skipped):"
@echo " test-distributed Run distributed IAM tests"
@echo " test-performance Run performance tests"
@echo " test-stress Run stress tests"
@echo " test-versioning-stress Run S3 versioning stress tests"
@echo " test-keycloak-full Run complete Keycloak integration tests"
@echo " test-all-previously-skipped Run all previously skipped tests"
@echo " setup-all-tests Setup environment for all tests"
@echo ""
@echo "Docker Compose Targets:"
@echo " docker-test Run tests with Docker Compose including Keycloak"
@echo " docker-up Start all services with Docker Compose"
@echo " docker-down Stop all Docker Compose services"
@echo " docker-logs Show logs from all services"
test: clean setup start-services run-tests stop-services ## Run complete IAM integration test suite
test-quick: run-tests ## Run tests assuming services are already running
run-tests: ## Execute the Go tests
@echo "๐งช Running S3 IAM Integration Tests..."
go test -v -timeout $(TEST_TIMEOUT) ./...
setup: ## Setup test environment
@echo "๐ง Setting up test environment..."
@mkdir -p test-volume-data/filerldb2
@mkdir -p test-volume-data/m9333
start-services: ## Start SeaweedFS services for testing
@echo "๐ Starting SeaweedFS services..."
@echo "Starting master server..."
@$(WEED_BINARY) master -port=$(MASTER_PORT) \
-mdir=test-volume-data/m9333 \
-peers=none > weed-master.log 2>&1 & \
echo $$! > $(MASTER_PID_FILE)
@echo "Waiting for master server to be ready..."
@timeout 60 bash -c 'until curl -s http://localhost:$(MASTER_PORT)/cluster/status > /dev/null 2>&1; do echo "Waiting for master server..."; sleep 2; done' || (echo "โ Master failed to start, checking logs..." && tail -20 weed-master.log && exit 1)
@echo "โ
Master server is ready"
@echo "Starting volume server..."
@$(WEED_BINARY) volume -port=$(VOLUME_PORT) \
-ip=localhost \
-dataCenter=dc1 -rack=rack1 \
-dir=test-volume-data \
-max=100 \
-master=localhost:$(MASTER_PORT) > weed-volume.log 2>&1 & \
echo $$! > $(VOLUME_PID_FILE)
@echo "Waiting for volume server to be ready..."
@timeout 60 bash -c 'until curl -s http://localhost:$(VOLUME_PORT)/status > /dev/null 2>&1; do echo "Waiting for volume server..."; sleep 2; done' || (echo "โ Volume server failed to start, checking logs..." && tail -20 weed-volume.log && exit 1)
@echo "โ
Volume server is ready"
@echo "Starting filer server..."
@$(WEED_BINARY) filer -port=$(FILER_PORT) \
-defaultStoreDir=test-volume-data/filerldb2 \
-master=localhost:$(MASTER_PORT) > weed-filer.log 2>&1 & \
echo $$! > $(FILER_PID_FILE)
@echo "Waiting for filer server to be ready..."
@timeout 60 bash -c 'until curl -s http://localhost:$(FILER_PORT)/status > /dev/null 2>&1; do echo "Waiting for filer server..."; sleep 2; done' || (echo "โ Filer failed to start, checking logs..." && tail -20 weed-filer.log && exit 1)
@echo "โ
Filer server is ready"
@echo "Starting S3 API server with IAM..."
@$(WEED_BINARY) -v=3 s3 -port=$(S3_PORT) \
-filer=localhost:$(FILER_PORT) \
-config=test_config.json \
-iam.config=$(CURDIR)/iam_config.json > weed-s3.log 2>&1 & \
echo $$! > $(S3_PID_FILE)
@echo "Waiting for S3 API server to be ready..."
@timeout 60 bash -c 'until curl -s http://localhost:$(S3_PORT) > /dev/null 2>&1; do echo "Waiting for S3 API server..."; sleep 2; done' || (echo "โ S3 API failed to start, checking logs..." && tail -20 weed-s3.log && exit 1)
@echo "โ
S3 API server is ready"
@echo "โ
All services started and ready"
wait-for-services: ## Wait for all services to be ready
@echo "โณ Waiting for services to be ready..."
@echo "Checking master server..."
@timeout 30 bash -c 'until curl -s http://localhost:$(MASTER_PORT)/cluster/status > /dev/null; do sleep 1; done' || (echo "โ Master failed to start" && exit 1)
@echo "Checking filer server..."
@timeout 30 bash -c 'until curl -s http://localhost:$(FILER_PORT)/status > /dev/null; do sleep 1; done' || (echo "โ Filer failed to start" && exit 1)
@echo "Checking S3 API server..."
@timeout 30 bash -c 'until curl -s http://localhost:$(S3_PORT) > /dev/null 2>&1; do sleep 1; done' || (echo "โ S3 API failed to start" && exit 1)
@echo "Pre-allocating volumes for concurrent operations..."
@curl -s "http://localhost:$(MASTER_PORT)/vol/grow?collection=default&count=10&replication=000" > /dev/null || echo "โ ๏ธ Volume pre-allocation failed, but continuing..."
@sleep 3
@echo "โ
All services are ready"
stop-services: ## Stop all SeaweedFS services
@echo "๐ Stopping SeaweedFS services..."
@if [ -f $(S3_PID_FILE) ]; then \
echo "Stopping S3 API server..."; \
kill $$(cat $(S3_PID_FILE)) 2>/dev/null || true; \
rm -f $(S3_PID_FILE); \
fi
@if [ -f $(FILER_PID_FILE) ]; then \
echo "Stopping filer server..."; \
kill $$(cat $(FILER_PID_FILE)) 2>/dev/null || true; \
rm -f $(FILER_PID_FILE); \
fi
@if [ -f $(VOLUME_PID_FILE) ]; then \
echo "Stopping volume server..."; \
kill $$(cat $(VOLUME_PID_FILE)) 2>/dev/null || true; \
rm -f $(VOLUME_PID_FILE); \
fi
@if [ -f $(MASTER_PID_FILE) ]; then \
echo "Stopping master server..."; \
kill $$(cat $(MASTER_PID_FILE)) 2>/dev/null || true; \
rm -f $(MASTER_PID_FILE); \
fi
@echo "โ
All services stopped"
clean: stop-services ## Clean up test environment
@echo "๐งน Cleaning up test environment..."
@rm -rf test-volume-data
@rm -f weed-*.log
@rm -f *.test
@echo "โ
Cleanup complete"
logs: ## Show service logs
@echo "๐ Service Logs:"
@echo "=== Master Log ==="
@tail -20 weed-master.log 2>/dev/null || echo "No master log"
@echo ""
@echo "=== Volume Log ==="
@tail -20 weed-volume.log 2>/dev/null || echo "No volume log"
@echo ""
@echo "=== Filer Log ==="
@tail -20 weed-filer.log 2>/dev/null || echo "No filer log"
@echo ""
@echo "=== S3 API Log ==="
@tail -20 weed-s3.log 2>/dev/null || echo "No S3 log"
status: ## Check service status
@echo "๐ Service Status:"
@echo -n "Master: "; curl -s http://localhost:$(MASTER_PORT)/cluster/status > /dev/null 2>&1 && echo "โ
Running" || echo "โ Not running"
@echo -n "Filer: "; curl -s http://localhost:$(FILER_PORT)/status > /dev/null 2>&1 && echo "โ
Running" || echo "โ Not running"
@echo -n "S3 API: "; curl -s http://localhost:$(S3_PORT) > /dev/null 2>&1 && echo "โ
Running" || echo "โ Not running"
debug: start-services wait-for-services ## Start services and keep them running for debugging
@echo "๐ Services started in debug mode. Press Ctrl+C to stop..."
@trap 'make stop-services' INT; \
while true; do \
sleep 1; \
done
# Test specific scenarios
test-auth: ## Test only authentication scenarios
go test -v -run TestS3IAMAuthentication ./...
test-policy: ## Test only policy enforcement
go test -v -run TestS3IAMPolicyEnforcement ./...
test-expiration: ## Test only session expiration
go test -v -run TestS3IAMSessionExpiration ./...
test-multipart: ## Test only multipart upload IAM integration
go test -v -run TestS3IAMMultipartUploadPolicyEnforcement ./...
test-bucket-policy: ## Test only bucket policy integration
go test -v -run TestS3IAMBucketPolicyIntegration ./...
test-context: ## Test only contextual policy enforcement
go test -v -run TestS3IAMContextualPolicyEnforcement ./...
test-presigned: ## Test only presigned URL integration
go test -v -run TestS3IAMPresignedURLIntegration ./...
# Performance testing
benchmark: setup start-services wait-for-services ## Run performance benchmarks
@echo "๐ Running IAM performance benchmarks..."
go test -bench=. -benchmem -timeout $(TEST_TIMEOUT) ./...
@make stop-services
# Continuous integration
ci: ## Run tests suitable for CI environment
@echo "๐ Running CI tests..."
@export CGO_ENABLED=0; make test
# Development helpers
watch: ## Watch for file changes and re-run tests
@echo "๐ Watching for changes..."
@command -v entr >/dev/null 2>&1 || (echo "entr is required for watch mode. Install with: brew install entr" && exit 1)
@find . -name "*.go" | entr -r make test-quick
install-deps: ## Install test dependencies
@echo "๐ฆ Installing test dependencies..."
go mod tidy
go get -u github.com/stretchr/testify
go get -u github.com/aws/aws-sdk-go
go get -u github.com/golang-jwt/jwt/v5
# Docker support
docker-test-legacy: ## Run tests in Docker container (legacy)
@echo "๐ณ Running tests in Docker..."
docker build -f Dockerfile.test -t seaweedfs-s3-iam-test .
docker run --rm -v $(PWD)/../../../:/app seaweedfs-s3-iam-test
# Docker Compose support with Keycloak
docker-up: ## Start all services with Docker Compose (including Keycloak)
@echo "๐ณ Starting services with Docker Compose including Keycloak..."
@docker compose up -d
@echo "โณ Waiting for services to be healthy..."
@timeout 120 bash -c 'until curl -s http://localhost:8080/health/ready > /dev/null 2>&1; do sleep 2; done' || (echo "โ Keycloak failed to become ready" && exit 1)
@timeout 60 bash -c 'until curl -s http://localhost:8333 > /dev/null 2>&1; do sleep 2; done' || (echo "โ S3 API failed to become ready" && exit 1)
@timeout 60 bash -c 'until curl -s http://localhost:8888 > /dev/null 2>&1; do sleep 2; done' || (echo "โ Filer failed to become ready" && exit 1)
@timeout 60 bash -c 'until curl -s http://localhost:9333 > /dev/null 2>&1; do sleep 2; done' || (echo "โ Master failed to become ready" && exit 1)
@echo "โ
All services are healthy and ready"
docker-down: ## Stop all Docker Compose services
@echo "๐ณ Stopping Docker Compose services..."
@docker compose down -v
@echo "โ
All services stopped"
docker-logs: ## Show logs from all services
@docker compose logs -f
docker-test: docker-up ## Run tests with Docker Compose including Keycloak
@echo "๐งช Running Keycloak integration tests..."
@export KEYCLOAK_URL="http://localhost:8080" && \
export S3_ENDPOINT="http://localhost:8333" && \
go test -v -timeout $(TEST_TIMEOUT) -run "TestKeycloak" ./...
@echo "๐ณ Stopping services after tests..."
@make docker-down
docker-build: ## Build custom SeaweedFS image for Docker tests
@echo "๐๏ธ Building custom SeaweedFS image..."
@docker build -f Dockerfile.s3 -t seaweedfs-iam:latest ../../..
@echo "โ
Image built successfully"
# All PHONY targets
.PHONY: test test-quick run-tests setup start-services stop-services wait-for-services clean logs status debug
.PHONY: test-auth test-policy test-expiration test-multipart test-bucket-policy test-context test-presigned
.PHONY: benchmark ci watch install-deps docker-test docker-up docker-down docker-logs docker-build
.PHONY: test-distributed test-performance test-stress test-versioning-stress test-keycloak-full test-all-previously-skipped setup-all-tests help-advanced
# New test targets for previously skipped tests
test-distributed: ## Run distributed IAM tests
@echo "๐ Running distributed IAM tests..."
@export ENABLE_DISTRIBUTED_TESTS=true && go test -v -timeout $(TEST_TIMEOUT) -run "TestS3IAMDistributedTests" ./...
test-performance: ## Run performance tests
@echo "๐ Running performance tests..."
@export ENABLE_PERFORMANCE_TESTS=true && go test -v -timeout $(TEST_TIMEOUT) -run "TestS3IAMPerformanceTests" ./...
test-stress: ## Run stress tests
@echo "๐ช Running stress tests..."
@export ENABLE_STRESS_TESTS=true && ./run_stress_tests.sh
test-versioning-stress: ## Run S3 versioning stress tests
@echo "๐ Running versioning stress tests..."
@cd ../versioning && ./enable_stress_tests.sh
test-keycloak-full: docker-up ## Run complete Keycloak integration tests
@echo "๐ Running complete Keycloak integration tests..."
@export KEYCLOAK_URL="http://localhost:8080" && \
export S3_ENDPOINT="http://localhost:8333" && \
go test -v -timeout $(TEST_TIMEOUT) -run "TestKeycloak" ./...
@make docker-down
test-all-previously-skipped: ## Run all previously skipped tests
@echo "๐ฏ Running all previously skipped tests..."
@./run_all_tests.sh
setup-all-tests: ## Setup environment for all tests (including Keycloak)
@echo "๐ Setting up complete test environment..."
@./setup_all_tests.sh
|