mirror of
https://github.com/zeromicro/go-zero.git
synced 2026-05-21 05:38:21 +08:00
Compare commits
65 Commits
v1.9.0
...
copilot/fi
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
02191e0d99 | ||
|
|
28b12ad9cc | ||
|
|
87dd9671be | ||
|
|
4e52d77ad8 | ||
|
|
1fc2cfb859 | ||
|
|
942cdae41d | ||
|
|
e9c3607bc6 | ||
|
|
d1603e9166 | ||
|
|
e30317e9c4 | ||
|
|
568f9ce007 | ||
|
|
dcb309065a | ||
|
|
bf8e17a686 | ||
|
|
b2ebbfce62 | ||
|
|
2b10a6a223 | ||
|
|
80c320b46e | ||
|
|
bea9d150a1 | ||
|
|
3f756a2cbf | ||
|
|
bbe5bbb0c0 | ||
|
|
5ad2278a69 | ||
|
|
77763fe748 | ||
|
|
538c4fb5c7 | ||
|
|
315fb2fe0a | ||
|
|
e382887eb8 | ||
|
|
cf21cb2b0b | ||
|
|
61e8894c31 | ||
|
|
7a6c3c8129 | ||
|
|
875fec3e1a | ||
|
|
60128c2100 | ||
|
|
ce6d0e3ea7 | ||
|
|
fa85c84af3 | ||
|
|
440884105e | ||
|
|
271f10598f | ||
|
|
cf55a88ce3 | ||
|
|
c1c786b14a | ||
|
|
988fb9d9bf | ||
|
|
d212c81bca | ||
|
|
bc43df2641 | ||
|
|
351b8cb37b | ||
|
|
0d681a2e29 | ||
|
|
5ea027c5de | ||
|
|
5de6112dcd | ||
|
|
4fb51723b7 | ||
|
|
06502d1115 | ||
|
|
3854d6dd00 | ||
|
|
895854913a | ||
|
|
ef753b8857 | ||
|
|
9c16fede73 | ||
|
|
ce11adb5e4 | ||
|
|
894e8b1218 | ||
|
|
2ec7e432dd | ||
|
|
870e8352c1 | ||
|
|
de42f27e03 | ||
|
|
955b8016aa | ||
|
|
d728a3b2d9 | ||
|
|
0c205a71fc | ||
|
|
a8c0199d96 | ||
|
|
032a266ec4 | ||
|
|
40b75fbb9b | ||
|
|
afad55045b | ||
|
|
5f54f06ee5 | ||
|
|
20f56ae1d0 | ||
|
|
73d6fcfccd | ||
|
|
20d20ef861 | ||
|
|
a37422b504 | ||
|
|
a81d898408 |
197
.github/copilot-instructions.md
vendored
Normal file
197
.github/copilot-instructions.md
vendored
Normal file
@@ -0,0 +1,197 @@
|
|||||||
|
# GitHub Copilot Instructions for go-zero
|
||||||
|
|
||||||
|
This document provides guidelines for GitHub Copilot when assisting with development in the go-zero project.
|
||||||
|
|
||||||
|
## Project Overview
|
||||||
|
|
||||||
|
go-zero is a web and RPC framework with lots of built-in engineering practices designed to ensure the stability of busy services with resilience design. It has been serving sites with tens of millions of users for years.
|
||||||
|
|
||||||
|
### Key Architecture Components
|
||||||
|
|
||||||
|
- **REST API framework** (`rest/`) - HTTP service framework with middleware support
|
||||||
|
- **RPC framework** (`zrpc/`) - gRPC-based RPC framework with service discovery
|
||||||
|
- **Core utilities** (`core/`) - Foundational components including:
|
||||||
|
- Circuit breakers, rate limiters, load shedding
|
||||||
|
- Caching, stores (Redis, MongoDB, SQL)
|
||||||
|
- Concurrency control, metrics, tracing
|
||||||
|
- Configuration management
|
||||||
|
- **Code generation tool** (`tools/goctl/`) - CLI tool for generating code from API files
|
||||||
|
|
||||||
|
## Coding Standards and Conventions
|
||||||
|
|
||||||
|
### Code Style
|
||||||
|
|
||||||
|
1. **Follow Go conventions**: Use `gofmt` for formatting, follow effective Go practices
|
||||||
|
2. **Package naming**: Use lowercase, single-word package names when possible
|
||||||
|
3. **Error handling**: Always handle errors explicitly, use `errorx.BatchError` for multiple errors
|
||||||
|
4. **Context propagation**: Always pass `context.Context` as the first parameter for functions that may block
|
||||||
|
5. **Configuration structures**: Use struct tags with JSON annotations and default values
|
||||||
|
|
||||||
|
Example configuration pattern:
|
||||||
|
```go
|
||||||
|
type Config struct {
|
||||||
|
Host string `json:",default=0.0.0.0"`
|
||||||
|
Port int `json:",default=8080"`
|
||||||
|
Timeout int `json:",default=3000"`
|
||||||
|
Optional string `json:",optional"`
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
### Interface Design
|
||||||
|
|
||||||
|
1. **Small interfaces**: Follow Go's preference for small, focused interfaces
|
||||||
|
2. **Context methods**: Provide both context and non-context versions of methods
|
||||||
|
3. **Options pattern**: Use functional options for complex configuration
|
||||||
|
|
||||||
|
Example:
|
||||||
|
```go
|
||||||
|
func (c *Client) Get(key string, val any) error {
|
||||||
|
return c.GetCtx(context.Background(), key, val)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *Client) GetCtx(ctx context.Context, key string, val any) error {
|
||||||
|
// implementation
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
### Testing Patterns
|
||||||
|
|
||||||
|
1. **Test file naming**: Use `*_test.go` suffix
|
||||||
|
2. **Test function naming**: Use `TestFunctionName` pattern
|
||||||
|
3. **Use testify/assert**: Prefer `assert` package for assertions
|
||||||
|
4. **Table-driven tests**: Use table-driven tests for multiple scenarios
|
||||||
|
5. **Mock interfaces**: Use `go.uber.org/mock` for mocking
|
||||||
|
6. **Test helpers**: Use `redistest`, `mongtest` helpers for database testing
|
||||||
|
|
||||||
|
Example test pattern:
|
||||||
|
```go
|
||||||
|
func TestSomething(t *testing.T) {
|
||||||
|
tests := []struct {
|
||||||
|
name string
|
||||||
|
input string
|
||||||
|
expected string
|
||||||
|
wantErr bool
|
||||||
|
}{
|
||||||
|
{"valid case", "input", "output", false},
|
||||||
|
{"error case", "bad", "", true},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, tt := range tests {
|
||||||
|
t.Run(tt.name, func(t *testing.T) {
|
||||||
|
result, err := SomeFunction(tt.input)
|
||||||
|
if tt.wantErr {
|
||||||
|
assert.Error(t, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
assert.NoError(t, err)
|
||||||
|
assert.Equal(t, tt.expected, result)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
## Framework-Specific Guidelines
|
||||||
|
|
||||||
|
### REST API Development
|
||||||
|
|
||||||
|
1. **API Definition**: Use `.api` files to define REST APIs
|
||||||
|
2. **Handler pattern**: Separate business logic into logic packages
|
||||||
|
3. **Middleware**: Use built-in middlewares (tracing, logging, metrics, recovery)
|
||||||
|
4. **Response handling**: Use `httpx.WriteJson` for JSON responses
|
||||||
|
5. **Error handling**: Use `httpx.Error` for HTTP error responses
|
||||||
|
|
||||||
|
### RPC Development
|
||||||
|
|
||||||
|
1. **Protocol Buffers**: Use protobuf for service definitions
|
||||||
|
2. **Service discovery**: Integrate with etcd for service registration
|
||||||
|
3. **Load balancing**: Use built-in load balancing strategies
|
||||||
|
4. **Interceptors**: Implement interceptors for cross-cutting concerns
|
||||||
|
|
||||||
|
### Database Operations
|
||||||
|
|
||||||
|
1. **SQL operations**: Use `sqlx` package for database operations
|
||||||
|
2. **Caching**: Implement caching patterns with `cache` package
|
||||||
|
3. **Transactions**: Use proper transaction handling
|
||||||
|
4. **Connection pooling**: Configure appropriate connection pools
|
||||||
|
|
||||||
|
Example cache pattern:
|
||||||
|
```go
|
||||||
|
err := c.QueryRowCtx(ctx, &dest, key, func(ctx context.Context, conn sqlx.SqlConn) error {
|
||||||
|
return conn.QueryRowCtx(ctx, &dest, query, args...)
|
||||||
|
})
|
||||||
|
```
|
||||||
|
|
||||||
|
### Configuration Management
|
||||||
|
|
||||||
|
1. **YAML configuration**: Use YAML for configuration files
|
||||||
|
2. **Environment variables**: Support environment variable overrides
|
||||||
|
3. **Validation**: Include proper validation for configuration parameters
|
||||||
|
4. **Sensible defaults**: Provide reasonable default values
|
||||||
|
|
||||||
|
## Error Handling Best Practices
|
||||||
|
|
||||||
|
1. **Wrap errors**: Use `fmt.Errorf` with `%w` verb to wrap errors
|
||||||
|
2. **Custom errors**: Define custom error types when needed
|
||||||
|
3. **Error logging**: Log errors appropriately with context
|
||||||
|
4. **Graceful degradation**: Implement fallback mechanisms
|
||||||
|
|
||||||
|
## Performance Considerations
|
||||||
|
|
||||||
|
1. **Resource pools**: Use connection pools and worker pools
|
||||||
|
2. **Circuit breakers**: Implement circuit breaker patterns for external calls
|
||||||
|
3. **Rate limiting**: Apply rate limiting to protect services
|
||||||
|
4. **Load shedding**: Implement adaptive load shedding
|
||||||
|
5. **Metrics**: Add appropriate metrics and monitoring
|
||||||
|
|
||||||
|
## Security Guidelines
|
||||||
|
|
||||||
|
1. **Input validation**: Validate all input parameters
|
||||||
|
2. **SQL injection prevention**: Use parameterized queries
|
||||||
|
3. **Authentication**: Implement proper JWT token handling
|
||||||
|
4. **HTTPS**: Support TLS/HTTPS configurations
|
||||||
|
5. **CORS**: Configure CORS appropriately for web APIs
|
||||||
|
|
||||||
|
## Documentation Standards
|
||||||
|
|
||||||
|
1. **Package documentation**: Include package-level documentation
|
||||||
|
2. **Function documentation**: Document exported functions with examples
|
||||||
|
3. **API documentation**: Maintain API documentation in sync
|
||||||
|
4. **README updates**: Update README for significant changes
|
||||||
|
|
||||||
|
## Common Patterns to Follow
|
||||||
|
|
||||||
|
### Service Configuration
|
||||||
|
```go
|
||||||
|
type ServiceConf struct {
|
||||||
|
Name string
|
||||||
|
Log logx.LogConf
|
||||||
|
Mode string `json:",default=pro,options=[dev,test,pre,pro]"`
|
||||||
|
// ... other common fields
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
### Middleware Implementation
|
||||||
|
```go
|
||||||
|
func SomeMiddleware() rest.Middleware {
|
||||||
|
return func(next http.HandlerFunc) http.HandlerFunc {
|
||||||
|
return func(w http.ResponseWriter, r *http.Request) {
|
||||||
|
// Pre-processing
|
||||||
|
next.ServeHTTP(w, r)
|
||||||
|
// Post-processing
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
### Resource Management
|
||||||
|
Always implement proper resource cleanup using defer and context cancellation.
|
||||||
|
|
||||||
|
## Build and Test Commands
|
||||||
|
|
||||||
|
- Build: `go build ./...`
|
||||||
|
- Test: `go test ./...`
|
||||||
|
- Test with race detection: `go test -race ./...`
|
||||||
|
- Format: `gofmt -w .`
|
||||||
|
- Generate code: `goctl api go -api *.api -dir .`
|
||||||
|
|
||||||
|
Remember to run tests and ensure all checks pass before submitting changes. The project emphasizes high quality, performance, and reliability, so these should be primary considerations in all development work.
|
||||||
6
.github/workflows/codeql-analysis.yml
vendored
6
.github/workflows/codeql-analysis.yml
vendored
@@ -39,7 +39,7 @@ jobs:
|
|||||||
|
|
||||||
# Initializes the CodeQL tools for scanning.
|
# Initializes the CodeQL tools for scanning.
|
||||||
- name: Initialize CodeQL
|
- name: Initialize CodeQL
|
||||||
uses: github/codeql-action/init@v3
|
uses: github/codeql-action/init@v4
|
||||||
with:
|
with:
|
||||||
languages: ${{ matrix.language }}
|
languages: ${{ matrix.language }}
|
||||||
# If you wish to specify custom queries, you can do so here or in a config file.
|
# If you wish to specify custom queries, you can do so here or in a config file.
|
||||||
@@ -50,7 +50,7 @@ jobs:
|
|||||||
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
||||||
# If this step fails, then you should remove it and run the build manually (see below)
|
# If this step fails, then you should remove it and run the build manually (see below)
|
||||||
- name: Autobuild
|
- name: Autobuild
|
||||||
uses: github/codeql-action/autobuild@v3
|
uses: github/codeql-action/autobuild@v4
|
||||||
|
|
||||||
# ℹ️ Command-line programs to run using the OS shell.
|
# ℹ️ Command-line programs to run using the OS shell.
|
||||||
# 📚 https://git.io/JvXDl
|
# 📚 https://git.io/JvXDl
|
||||||
@@ -64,4 +64,4 @@ jobs:
|
|||||||
# make release
|
# make release
|
||||||
|
|
||||||
- name: Perform CodeQL Analysis
|
- name: Perform CodeQL Analysis
|
||||||
uses: github/codeql-action/analyze@v3
|
uses: github/codeql-action/analyze@v4
|
||||||
|
|||||||
4
.github/workflows/go.yml
vendored
4
.github/workflows/go.yml
vendored
@@ -15,7 +15,7 @@ jobs:
|
|||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v5
|
||||||
|
|
||||||
- name: Set up Go 1.x
|
- name: Set up Go 1.x
|
||||||
uses: actions/setup-go@v5
|
uses: actions/setup-go@v6
|
||||||
with:
|
with:
|
||||||
go-version-file: go.mod
|
go-version-file: go.mod
|
||||||
check-latest: true
|
check-latest: true
|
||||||
@@ -55,7 +55,7 @@ jobs:
|
|||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v5
|
||||||
|
|
||||||
- name: Set up Go 1.x
|
- name: Set up Go 1.x
|
||||||
uses: actions/setup-go@v5
|
uses: actions/setup-go@v6
|
||||||
with:
|
with:
|
||||||
# make sure Go version compatible with go-zero
|
# make sure Go version compatible with go-zero
|
||||||
go-version-file: go.mod
|
go-version-file: go.mod
|
||||||
|
|||||||
2
.github/workflows/issues.yml
vendored
2
.github/workflows/issues.yml
vendored
@@ -7,7 +7,7 @@ jobs:
|
|||||||
close-issues:
|
close-issues:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/stale@v9
|
- uses: actions/stale@v10
|
||||||
with:
|
with:
|
||||||
days-before-issue-stale: 365
|
days-before-issue-stale: 365
|
||||||
days-before-issue-close: 90
|
days-before-issue-close: 90
|
||||||
|
|||||||
2
.github/workflows/version-check.yml
vendored
2
.github/workflows/version-check.yml
vendored
@@ -13,7 +13,7 @@ jobs:
|
|||||||
- uses: actions/checkout@v5
|
- uses: actions/checkout@v5
|
||||||
|
|
||||||
- name: Set up Go
|
- name: Set up Go
|
||||||
uses: actions/setup-go@v5
|
uses: actions/setup-go@v6
|
||||||
with:
|
with:
|
||||||
go-version: '1.21'
|
go-version: '1.21'
|
||||||
|
|
||||||
|
|||||||
1
.gitignore
vendored
1
.gitignore
vendored
@@ -17,6 +17,7 @@
|
|||||||
**/logs
|
**/logs
|
||||||
**/adhoc
|
**/adhoc
|
||||||
**/coverage.txt
|
**/coverage.txt
|
||||||
|
**/WARP.md
|
||||||
|
|
||||||
# for test purpose
|
# for test purpose
|
||||||
go.work
|
go.work
|
||||||
|
|||||||
@@ -1,47 +1,70 @@
|
|||||||
package logx
|
package logx
|
||||||
|
|
||||||
// A LogConf is a logging config.
|
type (
|
||||||
type LogConf struct {
|
// A LogConf is a logging config.
|
||||||
// ServiceName represents the service name.
|
LogConf struct {
|
||||||
ServiceName string `json:",optional"`
|
// ServiceName represents the service name.
|
||||||
// Mode represents the logging mode, default is `console`.
|
ServiceName string `json:",optional"`
|
||||||
// console: log to console.
|
// Mode represents the logging mode, default is `console`.
|
||||||
// file: log to file.
|
// console: log to console.
|
||||||
// volume: used in k8s, prepend the hostname to the log file name.
|
// file: log to file.
|
||||||
Mode string `json:",default=console,options=[console,file,volume]"`
|
// volume: used in k8s, prepend the hostname to the log file name.
|
||||||
// Encoding represents the encoding type, default is `json`.
|
Mode string `json:",default=console,options=[console,file,volume]"`
|
||||||
// json: json encoding.
|
// Encoding represents the encoding type, default is `json`.
|
||||||
// plain: plain text encoding, typically used in development.
|
// json: json encoding.
|
||||||
Encoding string `json:",default=json,options=[json,plain]"`
|
// plain: plain text encoding, typically used in development.
|
||||||
// TimeFormat represents the time format, default is `2006-01-02T15:04:05.000Z07:00`.
|
Encoding string `json:",default=json,options=[json,plain]"`
|
||||||
TimeFormat string `json:",optional"`
|
// TimeFormat represents the time format, default is `2006-01-02T15:04:05.000Z07:00`.
|
||||||
// Path represents the log file path, default is `logs`.
|
TimeFormat string `json:",optional"`
|
||||||
Path string `json:",default=logs"`
|
// Path represents the log file path, default is `logs`.
|
||||||
// Level represents the log level, default is `info`.
|
Path string `json:",default=logs"`
|
||||||
Level string `json:",default=info,options=[debug,info,error,severe]"`
|
// Level represents the log level, default is `info`.
|
||||||
// MaxContentLength represents the max content bytes, default is no limit.
|
Level string `json:",default=info,options=[debug,info,error,severe]"`
|
||||||
MaxContentLength uint32 `json:",optional"`
|
// MaxContentLength represents the max content bytes, default is no limit.
|
||||||
// Compress represents whether to compress the log file, default is `false`.
|
MaxContentLength uint32 `json:",optional"`
|
||||||
Compress bool `json:",optional"`
|
// Compress represents whether to compress the log file, default is `false`.
|
||||||
// Stat represents whether to log statistics, default is `true`.
|
Compress bool `json:",optional"`
|
||||||
Stat bool `json:",default=true"`
|
// Stat represents whether to log statistics, default is `true`.
|
||||||
// KeepDays represents how many days the log files will be kept. Default to keep all files.
|
Stat bool `json:",default=true"`
|
||||||
// Only take effect when Mode is `file` or `volume`, both work when Rotation is `daily` or `size`.
|
// KeepDays represents how many days the log files will be kept. Default to keep all files.
|
||||||
KeepDays int `json:",optional"`
|
// Only take effect when Mode is `file` or `volume`, both work when Rotation is `daily` or `size`.
|
||||||
// StackCooldownMillis represents the cooldown time for stack logging, default is 100ms.
|
KeepDays int `json:",optional"`
|
||||||
StackCooldownMillis int `json:",default=100"`
|
// StackCooldownMillis represents the cooldown time for stack logging, default is 100ms.
|
||||||
// MaxBackups represents how many backup log files will be kept. 0 means all files will be kept forever.
|
StackCooldownMillis int `json:",default=100"`
|
||||||
// Only take effect when RotationRuleType is `size`.
|
// MaxBackups represents how many backup log files will be kept. 0 means all files will be kept forever.
|
||||||
// Even though `MaxBackups` sets 0, log files will still be removed
|
// Only take effect when RotationRuleType is `size`.
|
||||||
// if the `KeepDays` limitation is reached.
|
// Even though `MaxBackups` sets 0, log files will still be removed
|
||||||
MaxBackups int `json:",default=0"`
|
// if the `KeepDays` limitation is reached.
|
||||||
// MaxSize represents how much space the writing log file takes up. 0 means no limit. The unit is `MB`.
|
MaxBackups int `json:",default=0"`
|
||||||
// Only take effect when RotationRuleType is `size`
|
// MaxSize represents how much space the writing log file takes up. 0 means no limit. The unit is `MB`.
|
||||||
MaxSize int `json:",default=0"`
|
// Only take effect when RotationRuleType is `size`
|
||||||
// Rotation represents the type of log rotation rule. Default is `daily`.
|
MaxSize int `json:",default=0"`
|
||||||
// daily: daily rotation.
|
// Rotation represents the type of log rotation rule. Default is `daily`.
|
||||||
// size: size limited rotation.
|
// daily: daily rotation.
|
||||||
Rotation string `json:",default=daily,options=[daily,size]"`
|
// size: size limited rotation.
|
||||||
// FileTimeFormat represents the time format for file name, default is `2006-01-02T15:04:05.000Z07:00`.
|
Rotation string `json:",default=daily,options=[daily,size]"`
|
||||||
FileTimeFormat string `json:",optional"`
|
// FileTimeFormat represents the time format for file name, default is `2006-01-02T15:04:05.000Z07:00`.
|
||||||
}
|
FileTimeFormat string `json:",optional"`
|
||||||
|
// FieldKeys represents the field keys.
|
||||||
|
FieldKeys fieldKeyConf `json:",optional"`
|
||||||
|
}
|
||||||
|
|
||||||
|
fieldKeyConf struct {
|
||||||
|
// CallerKey represents the caller key.
|
||||||
|
CallerKey string `json:",default=caller"`
|
||||||
|
// ContentKey represents the content key.
|
||||||
|
ContentKey string `json:",default=content"`
|
||||||
|
// DurationKey represents the duration key.
|
||||||
|
DurationKey string `json:",default=duration"`
|
||||||
|
// LevelKey represents the level key.
|
||||||
|
LevelKey string `json:",default=level"`
|
||||||
|
// SpanKey represents the span key.
|
||||||
|
SpanKey string `json:",default=span"`
|
||||||
|
// TimestampKey represents the timestamp key.
|
||||||
|
TimestampKey string `json:",default=@timestamp"`
|
||||||
|
// TraceKey represents the trace key.
|
||||||
|
TraceKey string `json:",default=trace"`
|
||||||
|
// TruncatedKey represents the truncated key.
|
||||||
|
TruncatedKey string `json:",default=truncated"`
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|||||||
@@ -276,7 +276,8 @@ func SetUp(c LogConf) (err error) {
|
|||||||
// Because multiple services in one process might call SetUp respectively.
|
// Because multiple services in one process might call SetUp respectively.
|
||||||
// Need to wait for the first caller to complete the execution.
|
// Need to wait for the first caller to complete the execution.
|
||||||
setupOnce.Do(func() {
|
setupOnce.Do(func() {
|
||||||
setupLogLevel(c)
|
setupLogLevel(c.Level)
|
||||||
|
setupFieldKeys(c.FieldKeys)
|
||||||
|
|
||||||
if !c.Stat {
|
if !c.Stat {
|
||||||
DisableStat()
|
DisableStat()
|
||||||
@@ -480,8 +481,35 @@ func handleOptions(opts []LogOption) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func setupLogLevel(c LogConf) {
|
func setupFieldKeys(c fieldKeyConf) {
|
||||||
switch c.Level {
|
if len(c.CallerKey) > 0 {
|
||||||
|
callerKey = c.CallerKey
|
||||||
|
}
|
||||||
|
if len(c.ContentKey) > 0 {
|
||||||
|
contentKey = c.ContentKey
|
||||||
|
}
|
||||||
|
if len(c.DurationKey) > 0 {
|
||||||
|
durationKey = c.DurationKey
|
||||||
|
}
|
||||||
|
if len(c.LevelKey) > 0 {
|
||||||
|
levelKey = c.LevelKey
|
||||||
|
}
|
||||||
|
if len(c.SpanKey) > 0 {
|
||||||
|
spanKey = c.SpanKey
|
||||||
|
}
|
||||||
|
if len(c.TimestampKey) > 0 {
|
||||||
|
timestampKey = c.TimestampKey
|
||||||
|
}
|
||||||
|
if len(c.TraceKey) > 0 {
|
||||||
|
traceKey = c.TraceKey
|
||||||
|
}
|
||||||
|
if len(c.TruncatedKey) > 0 {
|
||||||
|
truncatedKey = c.TruncatedKey
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func setupLogLevel(level string) {
|
||||||
|
switch level {
|
||||||
case levelDebug:
|
case levelDebug:
|
||||||
SetLevel(DebugLevel)
|
SetLevel(DebugLevel)
|
||||||
case levelInfo:
|
case levelInfo:
|
||||||
|
|||||||
@@ -17,6 +17,8 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/stretchr/testify/assert"
|
"github.com/stretchr/testify/assert"
|
||||||
|
"go.opentelemetry.io/otel"
|
||||||
|
"go.opentelemetry.io/otel/sdk/trace"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
@@ -777,15 +779,9 @@ func TestSetup(t *testing.T) {
|
|||||||
MaxBackups: 3,
|
MaxBackups: 3,
|
||||||
MaxSize: 1024 * 1024,
|
MaxSize: 1024 * 1024,
|
||||||
}))
|
}))
|
||||||
setupLogLevel(LogConf{
|
setupLogLevel(levelInfo)
|
||||||
Level: levelInfo,
|
setupLogLevel(levelError)
|
||||||
})
|
setupLogLevel(levelSevere)
|
||||||
setupLogLevel(LogConf{
|
|
||||||
Level: levelError,
|
|
||||||
})
|
|
||||||
setupLogLevel(LogConf{
|
|
||||||
Level: levelSevere,
|
|
||||||
})
|
|
||||||
_, err := createOutput("")
|
_, err := createOutput("")
|
||||||
assert.NotNil(t, err)
|
assert.NotNil(t, err)
|
||||||
Disable()
|
Disable()
|
||||||
@@ -1157,3 +1153,66 @@ func (s *countingStringer) String() string {
|
|||||||
atomic.AddInt32(&s.count, 1)
|
atomic.AddInt32(&s.count, 1)
|
||||||
return "countingStringer"
|
return "countingStringer"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestLogKey(t *testing.T) {
|
||||||
|
setupOnce = sync.Once{}
|
||||||
|
MustSetup(LogConf{
|
||||||
|
ServiceName: "any",
|
||||||
|
Mode: "console",
|
||||||
|
Encoding: "json",
|
||||||
|
TimeFormat: timeFormat,
|
||||||
|
FieldKeys: fieldKeyConf{
|
||||||
|
CallerKey: "_caller",
|
||||||
|
ContentKey: "_content",
|
||||||
|
DurationKey: "_duration",
|
||||||
|
LevelKey: "_level",
|
||||||
|
SpanKey: "_span",
|
||||||
|
TimestampKey: "_timestamp",
|
||||||
|
TraceKey: "_trace",
|
||||||
|
TruncatedKey: "_truncated",
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Cleanup(func() {
|
||||||
|
setupFieldKeys(fieldKeyConf{
|
||||||
|
CallerKey: defaultCallerKey,
|
||||||
|
ContentKey: defaultContentKey,
|
||||||
|
DurationKey: defaultDurationKey,
|
||||||
|
LevelKey: defaultLevelKey,
|
||||||
|
SpanKey: defaultSpanKey,
|
||||||
|
TimestampKey: defaultTimestampKey,
|
||||||
|
TraceKey: defaultTraceKey,
|
||||||
|
TruncatedKey: defaultTruncatedKey,
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
const message = "hello there"
|
||||||
|
w := new(mockWriter)
|
||||||
|
old := writer.Swap(w)
|
||||||
|
defer writer.Store(old)
|
||||||
|
|
||||||
|
otp := otel.GetTracerProvider()
|
||||||
|
tp := trace.NewTracerProvider(trace.WithSampler(trace.AlwaysSample()))
|
||||||
|
otel.SetTracerProvider(tp)
|
||||||
|
defer otel.SetTracerProvider(otp)
|
||||||
|
|
||||||
|
ctx, span := tp.Tracer("trace-id").Start(context.Background(), "span-id")
|
||||||
|
defer span.End()
|
||||||
|
|
||||||
|
WithContext(ctx).WithDuration(time.Second).Info(message)
|
||||||
|
now := time.Now()
|
||||||
|
|
||||||
|
var m map[string]string
|
||||||
|
if err := json.Unmarshal([]byte(w.String()), &m); err != nil {
|
||||||
|
t.Error(err)
|
||||||
|
}
|
||||||
|
assert.Equal(t, "info", m["_level"])
|
||||||
|
assert.Equal(t, message, m["_content"])
|
||||||
|
assert.Equal(t, "1000.0ms", m["_duration"])
|
||||||
|
assert.Regexp(t, `logx/logs_test.go:\d+`, m["_caller"])
|
||||||
|
assert.NotEmpty(t, m["_trace"])
|
||||||
|
assert.NotEmpty(t, m["_span"])
|
||||||
|
parsedTime, err := time.Parse(timeFormat, m["_timestamp"])
|
||||||
|
assert.True(t, err == nil)
|
||||||
|
assert.Equal(t, now.Minute(), parsedTime.Minute())
|
||||||
|
}
|
||||||
|
|||||||
@@ -423,3 +423,49 @@ type mockValue struct {
|
|||||||
Foo string `json:"foo"`
|
Foo string `json:"foo"`
|
||||||
Content any `json:"content"`
|
Content any `json:"content"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type testJson struct {
|
||||||
|
Name string `json:"name"`
|
||||||
|
Age int `json:"age"`
|
||||||
|
Score float64 `json:"score"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t testJson) MarshalJSON() ([]byte, error) {
|
||||||
|
type testJsonImpl testJson
|
||||||
|
return json.Marshal(testJsonImpl(t))
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t testJson) String() string {
|
||||||
|
return fmt.Sprintf("%s %d %f", t.Name, t.Age, t.Score)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestLogWithJson(t *testing.T) {
|
||||||
|
w := new(mockWriter)
|
||||||
|
old := writer.Swap(w)
|
||||||
|
writer.lock.RLock()
|
||||||
|
defer func() {
|
||||||
|
writer.lock.RUnlock()
|
||||||
|
writer.Store(old)
|
||||||
|
}()
|
||||||
|
|
||||||
|
l := WithContext(context.Background()).WithFields(Field("bar", testJson{
|
||||||
|
Name: "foo",
|
||||||
|
Age: 1,
|
||||||
|
Score: 1.0,
|
||||||
|
}))
|
||||||
|
l.Info(testlog)
|
||||||
|
|
||||||
|
type mockValue2 struct {
|
||||||
|
mockValue
|
||||||
|
Bar testJson `json:"bar"`
|
||||||
|
}
|
||||||
|
|
||||||
|
var val mockValue2
|
||||||
|
err := json.Unmarshal([]byte(w.String()), &val)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
|
||||||
|
assert.Equal(t, testlog, val.Content)
|
||||||
|
assert.Equal(t, "foo", val.Bar.Name)
|
||||||
|
assert.Equal(t, 1, val.Bar.Age)
|
||||||
|
assert.Equal(t, 1.0, val.Bar.Score)
|
||||||
|
}
|
||||||
|
|||||||
@@ -53,14 +53,14 @@ const (
|
|||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
callerKey = "caller"
|
defaultCallerKey = "caller"
|
||||||
contentKey = "content"
|
defaultContentKey = "content"
|
||||||
durationKey = "duration"
|
defaultDurationKey = "duration"
|
||||||
levelKey = "level"
|
defaultLevelKey = "level"
|
||||||
spanKey = "span"
|
defaultSpanKey = "span"
|
||||||
timestampKey = "@timestamp"
|
defaultTimestampKey = "@timestamp"
|
||||||
traceKey = "trace"
|
defaultTraceKey = "trace"
|
||||||
truncatedKey = "truncated"
|
defaultTruncatedKey = "truncated"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
@@ -73,3 +73,14 @@ var (
|
|||||||
|
|
||||||
truncatedField = Field(truncatedKey, true)
|
truncatedField = Field(truncatedKey, true)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
var (
|
||||||
|
callerKey = defaultCallerKey
|
||||||
|
contentKey = defaultContentKey
|
||||||
|
durationKey = defaultDurationKey
|
||||||
|
levelKey = defaultLevelKey
|
||||||
|
spanKey = defaultSpanKey
|
||||||
|
timestampKey = defaultTimestampKey
|
||||||
|
traceKey = defaultTraceKey
|
||||||
|
truncatedKey = defaultTruncatedKey
|
||||||
|
)
|
||||||
|
|||||||
@@ -212,7 +212,6 @@ func newFileWriter(c LogConf) (Writer, error) {
|
|||||||
statFile := path.Join(c.Path, statFilename)
|
statFile := path.Join(c.Path, statFilename)
|
||||||
|
|
||||||
handleOptions(opts)
|
handleOptions(opts)
|
||||||
setupLogLevel(c)
|
|
||||||
|
|
||||||
if infoLog, err = createOutput(accessFile); err != nil {
|
if infoLog, err = createOutput(accessFile); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
@@ -423,6 +422,8 @@ func processFieldValue(value any) any {
|
|||||||
times = append(times, fmt.Sprint(t))
|
times = append(times, fmt.Sprint(t))
|
||||||
}
|
}
|
||||||
return times
|
return times
|
||||||
|
case json.Marshaler:
|
||||||
|
return val
|
||||||
case fmt.Stringer:
|
case fmt.Stringer:
|
||||||
return encodeStringer(val)
|
return encodeStringer(val)
|
||||||
case []fmt.Stringer:
|
case []fmt.Stringer:
|
||||||
|
|||||||
@@ -157,6 +157,7 @@ func validateOptions(value reflect.Value, opt *fieldOptions) error {
|
|||||||
if !slices.Contains(opt.Options, val) {
|
if !slices.Contains(opt.Options, val) {
|
||||||
return fmt.Errorf("field %q not in options", val)
|
return fmt.Errorf("field %q not in options", val)
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -3,6 +3,9 @@ package mr
|
|||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"errors"
|
"errors"
|
||||||
|
"fmt"
|
||||||
|
"runtime/debug"
|
||||||
|
"strings"
|
||||||
"sync"
|
"sync"
|
||||||
"sync/atomic"
|
"sync/atomic"
|
||||||
|
|
||||||
@@ -183,12 +186,16 @@ func buildOptions(opts ...Option) *mapReduceOptions {
|
|||||||
return options
|
return options
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func buildPanicInfo(r any, stack []byte) string {
|
||||||
|
return fmt.Sprintf("%+v\n\n%s", r, strings.TrimSpace(string(stack)))
|
||||||
|
}
|
||||||
|
|
||||||
func buildSource[T any](generate GenerateFunc[T], panicChan *onceChan) chan T {
|
func buildSource[T any](generate GenerateFunc[T], panicChan *onceChan) chan T {
|
||||||
source := make(chan T)
|
source := make(chan T)
|
||||||
go func() {
|
go func() {
|
||||||
defer func() {
|
defer func() {
|
||||||
if r := recover(); r != nil {
|
if r := recover(); r != nil {
|
||||||
panicChan.write(r)
|
panicChan.write(buildPanicInfo(r, debug.Stack()))
|
||||||
}
|
}
|
||||||
close(source)
|
close(source)
|
||||||
}()
|
}()
|
||||||
@@ -235,7 +242,7 @@ func executeMappers[T, U any](mCtx mapperContext[T, U]) {
|
|||||||
defer func() {
|
defer func() {
|
||||||
if r := recover(); r != nil {
|
if r := recover(); r != nil {
|
||||||
atomic.AddInt32(&failed, 1)
|
atomic.AddInt32(&failed, 1)
|
||||||
mCtx.panicChan.write(r)
|
mCtx.panicChan.write(buildPanicInfo(r, debug.Stack()))
|
||||||
}
|
}
|
||||||
wg.Done()
|
wg.Done()
|
||||||
<-pool
|
<-pool
|
||||||
@@ -289,7 +296,7 @@ func mapReduceWithPanicChan[T, U, V any](source <-chan T, panicChan *onceChan, m
|
|||||||
defer func() {
|
defer func() {
|
||||||
drain(collector)
|
drain(collector)
|
||||||
if r := recover(); r != nil {
|
if r := recover(); r != nil {
|
||||||
panicChan.write(r)
|
panicChan.write(buildPanicInfo(r, debug.Stack()))
|
||||||
}
|
}
|
||||||
finish()
|
finish()
|
||||||
}()
|
}()
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ package mr
|
|||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"errors"
|
"errors"
|
||||||
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
"log"
|
"log"
|
||||||
"runtime"
|
"runtime"
|
||||||
@@ -148,11 +149,28 @@ func TestForEach(t *testing.T) {
|
|||||||
|
|
||||||
assert.Equal(t, tasks/2, int(count))
|
assert.Equal(t, tasks/2, int(count))
|
||||||
})
|
})
|
||||||
|
}
|
||||||
|
|
||||||
t.Run("all", func(t *testing.T) {
|
func TestPanics(t *testing.T) {
|
||||||
defer goleak.VerifyNone(t)
|
defer goleak.VerifyNone(t)
|
||||||
|
|
||||||
|
const tasks = 1000
|
||||||
|
verify := func(t *testing.T, r any) {
|
||||||
|
panicStr := fmt.Sprintf("%v", r)
|
||||||
|
assert.Contains(t, panicStr, "foo")
|
||||||
|
assert.Contains(t, panicStr, "goroutine")
|
||||||
|
assert.Contains(t, panicStr, "runtime/debug.Stack")
|
||||||
|
panic(r)
|
||||||
|
}
|
||||||
|
|
||||||
|
t.Run("ForEach run panics", func(t *testing.T) {
|
||||||
|
assert.Panics(t, func() {
|
||||||
|
defer func() {
|
||||||
|
if r := recover(); r != nil {
|
||||||
|
verify(t, r)
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
|
||||||
assert.PanicsWithValue(t, "foo", func() {
|
|
||||||
ForEach(func(source chan<- int) {
|
ForEach(func(source chan<- int) {
|
||||||
for i := 0; i < tasks; i++ {
|
for i := 0; i < tasks; i++ {
|
||||||
source <- i
|
source <- i
|
||||||
@@ -162,28 +180,31 @@ func TestForEach(t *testing.T) {
|
|||||||
})
|
})
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
}
|
|
||||||
|
|
||||||
func TestGeneratePanic(t *testing.T) {
|
t.Run("ForEach generate panics", func(t *testing.T) {
|
||||||
defer goleak.VerifyNone(t)
|
assert.Panics(t, func() {
|
||||||
|
defer func() {
|
||||||
|
if r := recover(); r != nil {
|
||||||
|
verify(t, r)
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
|
||||||
t.Run("all", func(t *testing.T) {
|
|
||||||
assert.PanicsWithValue(t, "foo", func() {
|
|
||||||
ForEach(func(source chan<- int) {
|
ForEach(func(source chan<- int) {
|
||||||
panic("foo")
|
panic("foo")
|
||||||
}, func(item int) {
|
}, func(item int) {
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
}
|
|
||||||
|
|
||||||
func TestMapperPanic(t *testing.T) {
|
|
||||||
defer goleak.VerifyNone(t)
|
|
||||||
|
|
||||||
const tasks = 1000
|
|
||||||
var run int32
|
var run int32
|
||||||
t.Run("all", func(t *testing.T) {
|
t.Run("Mapper panics", func(t *testing.T) {
|
||||||
assert.PanicsWithValue(t, "foo", func() {
|
assert.Panics(t, func() {
|
||||||
|
defer func() {
|
||||||
|
if r := recover(); r != nil {
|
||||||
|
verify(t, r)
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
|
||||||
_, _ = MapReduce(func(source chan<- int) {
|
_, _ = MapReduce(func(source chan<- int) {
|
||||||
for i := 0; i < tasks; i++ {
|
for i := 0; i < tasks; i++ {
|
||||||
source <- i
|
source <- i
|
||||||
|
|||||||
@@ -5,6 +5,8 @@ import (
|
|||||||
"io"
|
"io"
|
||||||
"os"
|
"os"
|
||||||
"runtime"
|
"runtime"
|
||||||
|
"runtime/debug"
|
||||||
|
"runtime/metrics"
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -28,10 +30,29 @@ func displayStatsWithWriter(writer io.Writer, interval ...time.Duration) {
|
|||||||
ticker := time.NewTicker(duration)
|
ticker := time.NewTicker(duration)
|
||||||
defer ticker.Stop()
|
defer ticker.Stop()
|
||||||
for range ticker.C {
|
for range ticker.C {
|
||||||
var m runtime.MemStats
|
var (
|
||||||
runtime.ReadMemStats(&m)
|
alloc, totalAlloc, sys uint64
|
||||||
|
samples = []metrics.Sample{
|
||||||
|
{Name: "/memory/classes/heap/objects:bytes"},
|
||||||
|
{Name: "/gc/heap/allocs:bytes"},
|
||||||
|
{Name: "/memory/classes/total:bytes"},
|
||||||
|
}
|
||||||
|
)
|
||||||
|
metrics.Read(samples)
|
||||||
|
|
||||||
|
if samples[0].Value.Kind() == metrics.KindUint64 {
|
||||||
|
alloc = samples[0].Value.Uint64()
|
||||||
|
}
|
||||||
|
if samples[1].Value.Kind() == metrics.KindUint64 {
|
||||||
|
totalAlloc = samples[1].Value.Uint64()
|
||||||
|
}
|
||||||
|
if samples[2].Value.Kind() == metrics.KindUint64 {
|
||||||
|
sys = samples[2].Value.Uint64()
|
||||||
|
}
|
||||||
|
var stats debug.GCStats
|
||||||
|
debug.ReadGCStats(&stats)
|
||||||
fmt.Fprintf(writer, "Goroutines: %d, Alloc: %vm, TotalAlloc: %vm, Sys: %vm, NumGC: %v\n",
|
fmt.Fprintf(writer, "Goroutines: %d, Alloc: %vm, TotalAlloc: %vm, Sys: %vm, NumGC: %v\n",
|
||||||
runtime.NumGoroutine(), m.Alloc/mega, m.TotalAlloc/mega, m.Sys/mega, m.NumGC)
|
runtime.NumGoroutine(), alloc/mega, totalAlloc/mega, sys/mega, stats.NumGC)
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
package stat
|
package stat
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"runtime"
|
"runtime/debug"
|
||||||
|
"runtime/metrics"
|
||||||
"sync/atomic"
|
"sync/atomic"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
@@ -56,8 +57,28 @@ func bToMb(b uint64) float32 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func printUsage() {
|
func printUsage() {
|
||||||
var m runtime.MemStats
|
var (
|
||||||
runtime.ReadMemStats(&m)
|
alloc, totalAlloc, sys uint64
|
||||||
|
samples = []metrics.Sample{
|
||||||
|
{Name: "/memory/classes/heap/objects:bytes"},
|
||||||
|
{Name: "/gc/heap/allocs:bytes"},
|
||||||
|
{Name: "/memory/classes/total:bytes"},
|
||||||
|
}
|
||||||
|
stats debug.GCStats
|
||||||
|
)
|
||||||
|
metrics.Read(samples)
|
||||||
|
|
||||||
|
if samples[0].Value.Kind() == metrics.KindUint64 {
|
||||||
|
alloc = samples[0].Value.Uint64()
|
||||||
|
}
|
||||||
|
if samples[1].Value.Kind() == metrics.KindUint64 {
|
||||||
|
totalAlloc = samples[1].Value.Uint64()
|
||||||
|
}
|
||||||
|
if samples[2].Value.Kind() == metrics.KindUint64 {
|
||||||
|
sys = samples[2].Value.Uint64()
|
||||||
|
}
|
||||||
|
debug.ReadGCStats(&stats)
|
||||||
|
|
||||||
logx.Statf("CPU: %dm, MEMORY: Alloc=%.1fMi, TotalAlloc=%.1fMi, Sys=%.1fMi, NumGC=%d",
|
logx.Statf("CPU: %dm, MEMORY: Alloc=%.1fMi, TotalAlloc=%.1fMi, Sys=%.1fMi, NumGC=%d",
|
||||||
CpuUsage(), bToMb(m.Alloc), bToMb(m.TotalAlloc), bToMb(m.Sys), m.NumGC)
|
CpuUsage(), bToMb(alloc), bToMb(totalAlloc), bToMb(sys), stats.NumGC)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -532,7 +532,7 @@ func createModel(t *testing.T, coll mon.Collection) *Model {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// mustNewTestModel returns a test Model with the given cache.
|
// mustNewTestModel returns a test Model with the given cache.
|
||||||
func mustNewTestModel(collection mon.Collection, c cache.CacheConf, opts ...cache.Option) *Model {
|
func mustNewTestModel(collection mon.Collection, c cache.CacheConf, opts ...cache.Option) *Model {
|
||||||
return &Model{
|
return &Model{
|
||||||
Model: &mon.Model{
|
Model: &mon.Model{
|
||||||
|
|||||||
@@ -259,12 +259,34 @@ func (s *Redis) BitPosCtx(ctx context.Context, key string, bit, start, end int64
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Blpop uses passed in redis connection to execute blocking queries.
|
// Blpop uses passed in redis connection to execute blocking queries.
|
||||||
|
//
|
||||||
|
// For blocking operations, you must create a dedicated RedisNode using CreateBlockingNode to avoid
|
||||||
|
// exhausting the connection pool. Blocking commands hold connections for extended periods and should
|
||||||
|
// not share the regular connection pool.
|
||||||
|
//
|
||||||
|
// Example usage:
|
||||||
|
//
|
||||||
|
// node, err := redis.CreateBlockingNode(rds)
|
||||||
|
// if err != nil {
|
||||||
|
// // handle error
|
||||||
|
// }
|
||||||
|
// defer node.Close()
|
||||||
|
//
|
||||||
|
// value, err := rds.Blpop(node, "mylist")
|
||||||
|
// if err != nil {
|
||||||
|
// // handle error
|
||||||
|
// }
|
||||||
|
//
|
||||||
// Doesn't benefit from pooling redis connections of blocking queries
|
// Doesn't benefit from pooling redis connections of blocking queries
|
||||||
func (s *Redis) Blpop(node RedisNode, key string) (string, error) {
|
func (s *Redis) Blpop(node RedisNode, key string) (string, error) {
|
||||||
return s.BlpopCtx(context.Background(), node, key)
|
return s.BlpopCtx(context.Background(), node, key)
|
||||||
}
|
}
|
||||||
|
|
||||||
// BlpopCtx uses passed in redis connection to execute blocking queries.
|
// BlpopCtx uses passed in redis connection to execute blocking queries.
|
||||||
|
//
|
||||||
|
// For blocking operations, you must create a dedicated RedisNode using CreateBlockingNode.
|
||||||
|
// See Blpop for usage examples.
|
||||||
|
//
|
||||||
// Doesn't benefit from pooling redis connections of blocking queries
|
// Doesn't benefit from pooling redis connections of blocking queries
|
||||||
func (s *Redis) BlpopCtx(ctx context.Context, node RedisNode, key string) (string, error) {
|
func (s *Redis) BlpopCtx(ctx context.Context, node RedisNode, key string) (string, error) {
|
||||||
return s.BlpopWithTimeoutCtx(ctx, node, blockingQueryTimeout, key)
|
return s.BlpopWithTimeoutCtx(ctx, node, blockingQueryTimeout, key)
|
||||||
@@ -272,12 +294,18 @@ func (s *Redis) BlpopCtx(ctx context.Context, node RedisNode, key string) (strin
|
|||||||
|
|
||||||
// BlpopEx uses passed in redis connection to execute blpop command.
|
// BlpopEx uses passed in redis connection to execute blpop command.
|
||||||
// The difference against Blpop is that this method returns a bool to indicate success.
|
// The difference against Blpop is that this method returns a bool to indicate success.
|
||||||
|
//
|
||||||
|
// For blocking operations, you must create a dedicated RedisNode using CreateBlockingNode.
|
||||||
|
// See Blpop for usage examples.
|
||||||
func (s *Redis) BlpopEx(node RedisNode, key string) (string, bool, error) {
|
func (s *Redis) BlpopEx(node RedisNode, key string) (string, bool, error) {
|
||||||
return s.BlpopExCtx(context.Background(), node, key)
|
return s.BlpopExCtx(context.Background(), node, key)
|
||||||
}
|
}
|
||||||
|
|
||||||
// BlpopExCtx uses passed in redis connection to execute blpop command.
|
// BlpopExCtx uses passed in redis connection to execute blpop command.
|
||||||
// The difference against Blpop is that this method returns a bool to indicate success.
|
// The difference against Blpop is that this method returns a bool to indicate success.
|
||||||
|
//
|
||||||
|
// For blocking operations, you must create a dedicated RedisNode using CreateBlockingNode.
|
||||||
|
// See Blpop for usage examples.
|
||||||
func (s *Redis) BlpopExCtx(ctx context.Context, node RedisNode, key string) (string, bool, error) {
|
func (s *Redis) BlpopExCtx(ctx context.Context, node RedisNode, key string) (string, bool, error) {
|
||||||
if node == nil {
|
if node == nil {
|
||||||
return "", false, ErrNilNode
|
return "", false, ErrNilNode
|
||||||
@@ -297,12 +325,18 @@ func (s *Redis) BlpopExCtx(ctx context.Context, node RedisNode, key string) (str
|
|||||||
|
|
||||||
// BlpopWithTimeout uses passed in redis connection to execute blpop command.
|
// BlpopWithTimeout uses passed in redis connection to execute blpop command.
|
||||||
// Control blocking query timeout
|
// Control blocking query timeout
|
||||||
|
//
|
||||||
|
// For blocking operations, you must create a dedicated RedisNode using CreateBlockingNode.
|
||||||
|
// See Blpop for usage examples.
|
||||||
func (s *Redis) BlpopWithTimeout(node RedisNode, timeout time.Duration, key string) (string, error) {
|
func (s *Redis) BlpopWithTimeout(node RedisNode, timeout time.Duration, key string) (string, error) {
|
||||||
return s.BlpopWithTimeoutCtx(context.Background(), node, timeout, key)
|
return s.BlpopWithTimeoutCtx(context.Background(), node, timeout, key)
|
||||||
}
|
}
|
||||||
|
|
||||||
// BlpopWithTimeoutCtx uses passed in redis connection to execute blpop command.
|
// BlpopWithTimeoutCtx uses passed in redis connection to execute blpop command.
|
||||||
// Control blocking query timeout
|
// Control blocking query timeout
|
||||||
|
//
|
||||||
|
// For blocking operations, you must create a dedicated RedisNode using CreateBlockingNode.
|
||||||
|
// See Blpop for usage examples.
|
||||||
func (s *Redis) BlpopWithTimeoutCtx(ctx context.Context, node RedisNode, timeout time.Duration,
|
func (s *Redis) BlpopWithTimeoutCtx(ctx context.Context, node RedisNode, timeout time.Duration,
|
||||||
key string) (string, error) {
|
key string) (string, error) {
|
||||||
if node == nil {
|
if node == nil {
|
||||||
@@ -1840,6 +1874,29 @@ func (s *Redis) XInfoStreamCtx(ctx context.Context, stream string) (*red.XInfoSt
|
|||||||
|
|
||||||
// XReadGroup reads messages from Redis streams as part of a consumer group.
|
// XReadGroup reads messages from Redis streams as part of a consumer group.
|
||||||
// It allows for distributed processing of stream messages with automatic message delivery semantics.
|
// It allows for distributed processing of stream messages with automatic message delivery semantics.
|
||||||
|
//
|
||||||
|
// For blocking operations, you must create a dedicated RedisNode using CreateBlockingNode to avoid
|
||||||
|
// exhausting the connection pool. Blocking commands hold connections for extended periods and should
|
||||||
|
// not share the regular connection pool.
|
||||||
|
//
|
||||||
|
// Example usage:
|
||||||
|
//
|
||||||
|
// node, err := redis.CreateBlockingNode(rds)
|
||||||
|
// if err != nil {
|
||||||
|
// // handle error
|
||||||
|
// }
|
||||||
|
// defer node.Close()
|
||||||
|
//
|
||||||
|
// streams, err := rds.XReadGroup(
|
||||||
|
// node, // RedisNode created with CreateBlockingNode
|
||||||
|
// "mygroup", // consumer group name
|
||||||
|
// "consumer1", // consumer ID
|
||||||
|
// 10, // max number of messages to read
|
||||||
|
// 5*time.Second, // block duration
|
||||||
|
// false, // noAck flag
|
||||||
|
// "mystream", // stream name
|
||||||
|
// )
|
||||||
|
//
|
||||||
// Doesn't benefit from pooling redis connections of blocking queries.
|
// Doesn't benefit from pooling redis connections of blocking queries.
|
||||||
func (s *Redis) XReadGroup(node RedisNode, group string, consumerId string, count int64,
|
func (s *Redis) XReadGroup(node RedisNode, group string, consumerId string, count int64,
|
||||||
block time.Duration, noAck bool, streams ...string) ([]red.XStream, error) {
|
block time.Duration, noAck bool, streams ...string) ([]red.XStream, error) {
|
||||||
@@ -1847,6 +1904,10 @@ func (s *Redis) XReadGroup(node RedisNode, group string, consumerId string, coun
|
|||||||
}
|
}
|
||||||
|
|
||||||
// XReadGroupCtx is the context-aware version of XReadGroup.
|
// XReadGroupCtx is the context-aware version of XReadGroup.
|
||||||
|
//
|
||||||
|
// For blocking operations, you must create a dedicated RedisNode using CreateBlockingNode to avoid
|
||||||
|
// exhausting the connection pool. See XReadGroup for usage examples.
|
||||||
|
//
|
||||||
// Doesn't benefit from pooling redis connections of blocking queries.
|
// Doesn't benefit from pooling redis connections of blocking queries.
|
||||||
func (s *Redis) XReadGroupCtx(ctx context.Context, node RedisNode, group string, consumerId string,
|
func (s *Redis) XReadGroupCtx(ctx context.Context, node RedisNode, group string, consumerId string,
|
||||||
count int64, block time.Duration, noAck bool, streams ...string) ([]red.XStream, error) {
|
count int64, block time.Duration, noAck bool, streams ...string) ([]red.XStream, error) {
|
||||||
|
|||||||
@@ -13,7 +13,37 @@ type ClosableNode interface {
|
|||||||
Close()
|
Close()
|
||||||
}
|
}
|
||||||
|
|
||||||
// CreateBlockingNode returns a ClosableNode.
|
// CreateBlockingNode creates a dedicated RedisNode for blocking operations.
|
||||||
|
//
|
||||||
|
// Blocking Redis commands (like BLPOP, BRPOP, XREADGROUP with block parameter) hold connections
|
||||||
|
// for extended periods while waiting for data. Using them with the regular Redis connection pool
|
||||||
|
// can exhaust all available connections, causing other operations to fail or timeout.
|
||||||
|
//
|
||||||
|
// CreateBlockingNode creates a separate Redis client with a minimal connection pool (size 1) that
|
||||||
|
// is dedicated to blocking operations. This ensures blocking commands don't interfere with regular
|
||||||
|
// Redis operations.
|
||||||
|
//
|
||||||
|
// Example usage:
|
||||||
|
//
|
||||||
|
// rds := redis.MustNewRedis(redis.RedisConf{
|
||||||
|
// Host: "localhost:6379",
|
||||||
|
// Type: redis.NodeType,
|
||||||
|
// })
|
||||||
|
//
|
||||||
|
// // Create a dedicated node for blocking operations
|
||||||
|
// node, err := redis.CreateBlockingNode(rds)
|
||||||
|
// if err != nil {
|
||||||
|
// // handle error
|
||||||
|
// }
|
||||||
|
// defer node.Close() // Important: close the node when done
|
||||||
|
//
|
||||||
|
// // Use the node for blocking operations
|
||||||
|
// value, err := rds.Blpop(node, "mylist")
|
||||||
|
// if err != nil {
|
||||||
|
// // handle error
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// The returned ClosableNode must be closed when no longer needed to release resources.
|
||||||
func CreateBlockingNode(r *Redis) (ClosableNode, error) {
|
func CreateBlockingNode(r *Redis) (ClosableNode, error) {
|
||||||
timeout := readWriteTimeout + blockingQueryTimeout
|
timeout := readWriteTimeout + blockingQueryTimeout
|
||||||
|
|
||||||
|
|||||||
@@ -7,7 +7,6 @@ import (
|
|||||||
"os"
|
"os"
|
||||||
"sync"
|
"sync"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/core/lang"
|
|
||||||
"github.com/zeromicro/go-zero/core/logx"
|
"github.com/zeromicro/go-zero/core/logx"
|
||||||
"go.opentelemetry.io/otel"
|
"go.opentelemetry.io/otel"
|
||||||
"go.opentelemetry.io/otel/exporters/jaeger"
|
"go.opentelemetry.io/otel/exporters/jaeger"
|
||||||
@@ -30,42 +29,36 @@ const (
|
|||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
agents = make(map[string]lang.PlaceholderType)
|
once sync.Once
|
||||||
lock sync.Mutex
|
tp *sdktrace.TracerProvider
|
||||||
tp *sdktrace.TracerProvider
|
shutdownOnceFn = sync.OnceFunc(func() {
|
||||||
|
if tp != nil {
|
||||||
|
_ = tp.Shutdown(context.Background())
|
||||||
|
}
|
||||||
|
})
|
||||||
)
|
)
|
||||||
|
|
||||||
// StartAgent starts an opentelemetry agent.
|
// StartAgent starts an opentelemetry agent.
|
||||||
|
// It uses sync.Once to ensure the agent is initialized only once,
|
||||||
|
// similar to prometheus.StartAgent and logx.SetUp.
|
||||||
|
// This prevents multiple ServiceConf.SetUp() calls from reinitializing
|
||||||
|
// the global tracer provider when running multiple servers (e.g., REST + RPC)
|
||||||
|
// in the same process.
|
||||||
func StartAgent(c Config) {
|
func StartAgent(c Config) {
|
||||||
if c.Disabled {
|
if c.Disabled {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
lock.Lock()
|
once.Do(func() {
|
||||||
defer lock.Unlock()
|
if err := startAgent(c); err != nil {
|
||||||
|
logx.Error(err)
|
||||||
_, ok := agents[c.Endpoint]
|
}
|
||||||
if ok {
|
})
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
// if error happens, let later calls run.
|
|
||||||
if err := startAgent(c); err != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
agents[c.Endpoint] = lang.Placeholder
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// StopAgent shuts down the span processors in the order they were registered.
|
// StopAgent shuts down the span processors in the order they were registered.
|
||||||
func StopAgent() {
|
func StopAgent() {
|
||||||
lock.Lock()
|
shutdownOnceFn()
|
||||||
defer lock.Unlock()
|
|
||||||
|
|
||||||
if tp != nil {
|
|
||||||
_ = tp.Shutdown(context.Background())
|
|
||||||
tp = nil
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func createExporter(c Config) (sdktrace.SpanExporter, error) {
|
func createExporter(c Config) (sdktrace.SpanExporter, error) {
|
||||||
|
|||||||
@@ -1,10 +1,13 @@
|
|||||||
package trace
|
package trace
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"context"
|
||||||
|
"errors"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/stretchr/testify/assert"
|
"github.com/stretchr/testify/assert"
|
||||||
"github.com/zeromicro/go-zero/core/logx"
|
"github.com/zeromicro/go-zero/core/logx"
|
||||||
|
"go.opentelemetry.io/otel"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestStartAgent(t *testing.T) {
|
func TestStartAgent(t *testing.T) {
|
||||||
@@ -89,23 +92,305 @@ func TestStartAgent(t *testing.T) {
|
|||||||
StartAgent(c10)
|
StartAgent(c10)
|
||||||
defer StopAgent()
|
defer StopAgent()
|
||||||
|
|
||||||
lock.Lock()
|
// With sync.Once, only the first non-disabled config (c1) takes effect.
|
||||||
defer lock.Unlock()
|
// Subsequent calls are ignored, which is the desired behavior to prevent
|
||||||
|
// multiple servers (REST + RPC) from reinitializing the global tracer.
|
||||||
// because remotehost cannot be resolved
|
assert.NotNil(t, tp)
|
||||||
assert.Equal(t, 6, len(agents))
|
}
|
||||||
_, ok := agents[""]
|
|
||||||
assert.True(t, ok)
|
func TestCreateExporter_InvalidFilePath(t *testing.T) {
|
||||||
_, ok = agents[endpoint1]
|
logx.Disable()
|
||||||
assert.True(t, ok)
|
|
||||||
_, ok = agents[endpoint2]
|
c := Config{
|
||||||
assert.False(t, ok)
|
Name: "test-invalid-file",
|
||||||
_, ok = agents[endpoint5]
|
Endpoint: "/non-existent-directory/trace.log",
|
||||||
assert.True(t, ok)
|
Batcher: kindFile,
|
||||||
_, ok = agents[endpoint6]
|
}
|
||||||
assert.False(t, ok)
|
|
||||||
_, ok = agents[endpoint71]
|
_, err := createExporter(c)
|
||||||
assert.True(t, ok)
|
assert.Error(t, err)
|
||||||
_, ok = agents[endpoint72]
|
assert.Contains(t, err.Error(), "file exporter endpoint error")
|
||||||
assert.False(t, ok)
|
}
|
||||||
|
|
||||||
|
func TestCreateExporter_UnknownBatcher(t *testing.T) {
|
||||||
|
logx.Disable()
|
||||||
|
|
||||||
|
c := Config{
|
||||||
|
Name: "test-unknown",
|
||||||
|
Endpoint: "localhost:1234",
|
||||||
|
Batcher: "unknown-batcher-type",
|
||||||
|
}
|
||||||
|
|
||||||
|
_, err := createExporter(c)
|
||||||
|
assert.Error(t, err)
|
||||||
|
assert.Contains(t, err.Error(), "unknown exporter")
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestCreateExporter_ValidExporters(t *testing.T) {
|
||||||
|
logx.Disable()
|
||||||
|
|
||||||
|
tests := []struct {
|
||||||
|
name string
|
||||||
|
config Config
|
||||||
|
wantErr bool
|
||||||
|
errMsg string
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
name: "valid file exporter",
|
||||||
|
config: Config{
|
||||||
|
Name: "file-test",
|
||||||
|
Endpoint: "/tmp/trace-test.log",
|
||||||
|
Batcher: kindFile,
|
||||||
|
},
|
||||||
|
wantErr: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "invalid file path",
|
||||||
|
config: Config{
|
||||||
|
Name: "file-test-invalid",
|
||||||
|
Endpoint: "/invalid-path/that/does/not/exist/trace.log",
|
||||||
|
Batcher: kindFile,
|
||||||
|
},
|
||||||
|
wantErr: true,
|
||||||
|
errMsg: "file exporter endpoint error",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "unknown batcher",
|
||||||
|
config: Config{
|
||||||
|
Name: "unknown-test",
|
||||||
|
Endpoint: "localhost:1234",
|
||||||
|
Batcher: "invalid-batcher",
|
||||||
|
},
|
||||||
|
wantErr: true,
|
||||||
|
errMsg: "unknown exporter",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "jaeger http",
|
||||||
|
config: Config{
|
||||||
|
Name: "jaeger-http",
|
||||||
|
Endpoint: "http://localhost:14268/api/traces",
|
||||||
|
Batcher: kindJaeger,
|
||||||
|
},
|
||||||
|
wantErr: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "jaeger udp",
|
||||||
|
config: Config{
|
||||||
|
Name: "jaeger-udp",
|
||||||
|
Endpoint: "udp://localhost:6831",
|
||||||
|
Batcher: kindJaeger,
|
||||||
|
},
|
||||||
|
wantErr: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "zipkin",
|
||||||
|
config: Config{
|
||||||
|
Name: "zipkin",
|
||||||
|
Endpoint: "http://localhost:9411/api/v2/spans",
|
||||||
|
Batcher: kindZipkin,
|
||||||
|
},
|
||||||
|
wantErr: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "otlpgrpc",
|
||||||
|
config: Config{
|
||||||
|
Name: "otlpgrpc",
|
||||||
|
Endpoint: "localhost:4317",
|
||||||
|
Batcher: kindOtlpGrpc,
|
||||||
|
},
|
||||||
|
wantErr: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "otlpgrpc with headers",
|
||||||
|
config: Config{
|
||||||
|
Name: "otlpgrpc-headers",
|
||||||
|
Endpoint: "localhost:4317",
|
||||||
|
Batcher: kindOtlpGrpc,
|
||||||
|
OtlpHeaders: map[string]string{
|
||||||
|
"authorization": "Bearer token123",
|
||||||
|
"x-custom-key": "custom-value",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
wantErr: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "otlphttp",
|
||||||
|
config: Config{
|
||||||
|
Name: "otlphttp",
|
||||||
|
Endpoint: "localhost:4318",
|
||||||
|
Batcher: kindOtlpHttp,
|
||||||
|
},
|
||||||
|
wantErr: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "otlphttp with headers",
|
||||||
|
config: Config{
|
||||||
|
Name: "otlphttp-headers",
|
||||||
|
Endpoint: "localhost:4318",
|
||||||
|
Batcher: kindOtlpHttp,
|
||||||
|
OtlpHeaders: map[string]string{
|
||||||
|
"authorization": "Bearer token456",
|
||||||
|
"x-api-key": "api-key-value",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
wantErr: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "otlphttp with headers and path",
|
||||||
|
config: Config{
|
||||||
|
Name: "otlphttp-headers-path",
|
||||||
|
Endpoint: "localhost:4318",
|
||||||
|
Batcher: kindOtlpHttp,
|
||||||
|
OtlpHttpPath: "/v1/traces",
|
||||||
|
OtlpHeaders: map[string]string{
|
||||||
|
"authorization": "Bearer token789",
|
||||||
|
"x-custom-trace": "trace-id",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
wantErr: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "otlphttp with secure connection",
|
||||||
|
config: Config{
|
||||||
|
Name: "otlphttp-secure",
|
||||||
|
Endpoint: "localhost:4318",
|
||||||
|
Batcher: kindOtlpHttp,
|
||||||
|
OtlpHttpSecure: true,
|
||||||
|
OtlpHeaders: map[string]string{
|
||||||
|
"authorization": "Bearer secure-token",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
wantErr: false,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, tt := range tests {
|
||||||
|
t.Run(tt.name, func(t *testing.T) {
|
||||||
|
exporter, err := createExporter(tt.config)
|
||||||
|
if tt.wantErr {
|
||||||
|
assert.Error(t, err)
|
||||||
|
if tt.errMsg != "" {
|
||||||
|
assert.Contains(t, err.Error(), tt.errMsg)
|
||||||
|
}
|
||||||
|
assert.Nil(t, exporter)
|
||||||
|
} else {
|
||||||
|
assert.NoError(t, err)
|
||||||
|
assert.NotNil(t, exporter)
|
||||||
|
// Clean up the exporter
|
||||||
|
if exporter != nil {
|
||||||
|
_ = exporter.Shutdown(context.Background())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestStopAgent(t *testing.T) {
|
||||||
|
logx.Disable()
|
||||||
|
|
||||||
|
// StopAgent should be idempotent and safe to call multiple times
|
||||||
|
assert.NotPanics(t, func() {
|
||||||
|
StopAgent()
|
||||||
|
StopAgent()
|
||||||
|
StopAgent()
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestStartAgent_WithEndpoint(t *testing.T) {
|
||||||
|
logx.Disable()
|
||||||
|
|
||||||
|
tests := []struct {
|
||||||
|
name string
|
||||||
|
config Config
|
||||||
|
wantErr bool
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
name: "empty endpoint - no exporter created",
|
||||||
|
config: Config{
|
||||||
|
Name: "test-no-endpoint",
|
||||||
|
Sampler: 1.0,
|
||||||
|
},
|
||||||
|
wantErr: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "valid endpoint with file exporter",
|
||||||
|
config: Config{
|
||||||
|
Name: "test-with-endpoint",
|
||||||
|
Endpoint: "/tmp/test-trace.log",
|
||||||
|
Batcher: kindFile,
|
||||||
|
Sampler: 1.0,
|
||||||
|
},
|
||||||
|
wantErr: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "endpoint with invalid exporter type",
|
||||||
|
config: Config{
|
||||||
|
Name: "test-invalid-batcher",
|
||||||
|
Endpoint: "localhost:1234",
|
||||||
|
Batcher: "invalid-type",
|
||||||
|
Sampler: 1.0,
|
||||||
|
},
|
||||||
|
wantErr: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "endpoint with invalid file path",
|
||||||
|
config: Config{
|
||||||
|
Name: "test-invalid-path",
|
||||||
|
Endpoint: "/non/existent/path/trace.log",
|
||||||
|
Batcher: kindFile,
|
||||||
|
Sampler: 1.0,
|
||||||
|
},
|
||||||
|
wantErr: true,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, tt := range tests {
|
||||||
|
t.Run(tt.name, func(t *testing.T) {
|
||||||
|
// Reset tp for each test
|
||||||
|
originalTp := tp
|
||||||
|
tp = nil
|
||||||
|
defer func() {
|
||||||
|
if tp != nil {
|
||||||
|
_ = tp.Shutdown(context.Background())
|
||||||
|
}
|
||||||
|
tp = originalTp
|
||||||
|
}()
|
||||||
|
|
||||||
|
err := startAgent(tt.config)
|
||||||
|
if tt.wantErr {
|
||||||
|
assert.Error(t, err)
|
||||||
|
} else {
|
||||||
|
assert.NoError(t, err)
|
||||||
|
assert.NotNil(t, tp, "TracerProvider should be created")
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestStartAgent_ErrorHandler(t *testing.T) {
|
||||||
|
// Setup a tracer provider to test error handler
|
||||||
|
originalTp := tp
|
||||||
|
tp = nil
|
||||||
|
defer func() {
|
||||||
|
if tp != nil {
|
||||||
|
_ = tp.Shutdown(context.Background())
|
||||||
|
}
|
||||||
|
tp = originalTp
|
||||||
|
}()
|
||||||
|
|
||||||
|
// Call startAgent to set up the error handler
|
||||||
|
config := Config{
|
||||||
|
Name: "test-error-handler",
|
||||||
|
Sampler: 1.0,
|
||||||
|
}
|
||||||
|
err := startAgent(config)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
assert.NotNil(t, tp)
|
||||||
|
|
||||||
|
// Verify the error handler was set and can be called without panicking
|
||||||
|
// We test this by calling otel.Handle which will invoke the registered error handler
|
||||||
|
testErr := errors.New("test otel error")
|
||||||
|
assert.NotPanics(t, func() {
|
||||||
|
otel.Handle(testErr)
|
||||||
|
}, "Error handler should handle errors without panicking")
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -12,6 +12,16 @@ import (
|
|||||||
"google.golang.org/grpc/status"
|
"google.golang.org/grpc/status"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
// MetadataHeaderPrefix is the http prefix that represents custom metadata
|
||||||
|
// parameters to or from a gRPC call.
|
||||||
|
MetadataHeaderPrefix = "Grpc-Metadata-"
|
||||||
|
|
||||||
|
// MetadataTrailerPrefix is prepended to gRPC metadata as it is converted to
|
||||||
|
// HTTP headers in a response handled by go-zero gateway
|
||||||
|
MetadataTrailerPrefix = "Grpc-Trailer-"
|
||||||
|
)
|
||||||
|
|
||||||
type EventHandler struct {
|
type EventHandler struct {
|
||||||
Status *status.Status
|
Status *status.Status
|
||||||
writer io.Writer
|
writer io.Writer
|
||||||
@@ -31,9 +41,10 @@ func NewEventHandler(writer io.Writer, resolver jsonpb.AnyResolver) *EventHandle
|
|||||||
func (h *EventHandler) OnReceiveHeaders(md metadata.MD) {
|
func (h *EventHandler) OnReceiveHeaders(md metadata.MD) {
|
||||||
w, ok := h.writer.(http.ResponseWriter)
|
w, ok := h.writer.(http.ResponseWriter)
|
||||||
if ok {
|
if ok {
|
||||||
for k, v := range md {
|
for k, vs := range md {
|
||||||
for _, val := range v {
|
header := defaultOutgoingHeaderMatcher(k)
|
||||||
w.Header().Add(k, val)
|
for _, v := range vs {
|
||||||
|
w.Header().Add(header, v)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -48,9 +59,10 @@ func (h *EventHandler) OnReceiveResponse(message proto.Message) {
|
|||||||
func (h *EventHandler) OnReceiveTrailers(status *status.Status, md metadata.MD) {
|
func (h *EventHandler) OnReceiveTrailers(status *status.Status, md metadata.MD) {
|
||||||
w, ok := h.writer.(http.ResponseWriter)
|
w, ok := h.writer.(http.ResponseWriter)
|
||||||
if ok {
|
if ok {
|
||||||
for k, v := range md {
|
for k, vs := range md {
|
||||||
for _, val := range v {
|
header := defaultOutgoingTrailerMatcher(k)
|
||||||
w.Header().Add(k, val)
|
for _, v := range vs {
|
||||||
|
w.Header().Add(header, v)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -63,3 +75,11 @@ func (h *EventHandler) OnResolveMethod(_ *desc.MethodDescriptor) {
|
|||||||
|
|
||||||
func (h *EventHandler) OnSendHeaders(_ metadata.MD) {
|
func (h *EventHandler) OnSendHeaders(_ metadata.MD) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func defaultOutgoingHeaderMatcher(key string) string {
|
||||||
|
return MetadataHeaderPrefix + key
|
||||||
|
}
|
||||||
|
|
||||||
|
func defaultOutgoingTrailerMatcher(key string) string {
|
||||||
|
return MetadataTrailerPrefix + key
|
||||||
|
}
|
||||||
|
|||||||
@@ -40,8 +40,8 @@ func TestEventHandler_OnReceiveTrailers(t *testing.T) {
|
|||||||
},
|
},
|
||||||
expectedStatus: codes.OK,
|
expectedStatus: codes.OK,
|
||||||
expectedHeader: map[string][]string{
|
expectedHeader: map[string][]string{
|
||||||
"X-Custom-Header": {"value1", "value2"},
|
"Grpc-Trailer-X-Custom-Header": {"value1", "value2"},
|
||||||
"X-Another-Header": {"single-value"},
|
"Grpc-Trailer-X-Another-Header": {"single-value"},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -100,9 +100,9 @@ func TestEventHandler_OnReceiveHeaders(t *testing.T) {
|
|||||||
"x-another-header": []string{"single-value"},
|
"x-another-header": []string{"single-value"},
|
||||||
},
|
},
|
||||||
expectedHeader: map[string][]string{
|
expectedHeader: map[string][]string{
|
||||||
"Content-Type": {"application/json"},
|
"Grpc-Metadata-Content-Type": {"application/json"},
|
||||||
"X-Custom-Header": {"value1", "value2"},
|
"Grpc-Metadata-X-Custom-Header": {"value1", "value2"},
|
||||||
"X-Another-Header": {"single-value"},
|
"Grpc-Metadata-X-Another-Header": {"single-value"},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -158,7 +158,81 @@ func TestEventHandler_OnReceiveHeaders_MultipleValues(t *testing.T) {
|
|||||||
"x-header-2": []string{"value3"},
|
"x-header-2": []string{"value3"},
|
||||||
})
|
})
|
||||||
|
|
||||||
// Check that headers are accumulated (not overwritten)
|
// Check that headers are accumulated (not overwritten) with proper prefix
|
||||||
assert.Equal(t, []string{"value1", "value2"}, recorder.Header()["X-Header-1"])
|
assert.Equal(t, []string{"value1", "value2"}, recorder.Header()["Grpc-Metadata-X-Header-1"])
|
||||||
assert.Equal(t, []string{"value3"}, recorder.Header()["X-Header-2"])
|
assert.Equal(t, []string{"value3"}, recorder.Header()["Grpc-Metadata-X-Header-2"])
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestEventHandler_OnReceiveHeaders_MetadataPrefix(t *testing.T) {
|
||||||
|
tests := []struct {
|
||||||
|
name string
|
||||||
|
metadata metadata.MD
|
||||||
|
expectedHeader map[string][]string
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
name: "all metadata headers should be prefixed with Grpc-Metadata-",
|
||||||
|
metadata: metadata.MD{
|
||||||
|
"content-type": []string{"application/grpc"},
|
||||||
|
"x-custom-header": []string{"value1"},
|
||||||
|
"authorization": []string{"Bearer token"},
|
||||||
|
},
|
||||||
|
expectedHeader: map[string][]string{
|
||||||
|
"Grpc-Metadata-Content-Type": {"application/grpc"},
|
||||||
|
"Grpc-Metadata-X-Custom-Header": {"value1"},
|
||||||
|
"Grpc-Metadata-Authorization": {"Bearer token"},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "mixed case headers should be prefixed",
|
||||||
|
metadata: metadata.MD{
|
||||||
|
"Content-Type": []string{"APPLICATION/JSON"},
|
||||||
|
"X-Custom-Header": []string{"value1"},
|
||||||
|
},
|
||||||
|
expectedHeader: map[string][]string{
|
||||||
|
"Grpc-Metadata-Content-Type": {"APPLICATION/JSON"},
|
||||||
|
"Grpc-Metadata-X-Custom-Header": {"value1"},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "multiple values for same header",
|
||||||
|
metadata: metadata.MD{
|
||||||
|
"x-multi-header": []string{"value1", "value2", "value3"},
|
||||||
|
},
|
||||||
|
expectedHeader: map[string][]string{
|
||||||
|
"Grpc-Metadata-X-Multi-Header": {"value1", "value2", "value3"},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "empty metadata",
|
||||||
|
metadata: metadata.MD{},
|
||||||
|
expectedHeader: map[string][]string{},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, tt := range tests {
|
||||||
|
t.Run(tt.name, func(t *testing.T) {
|
||||||
|
recorder := httptest.NewRecorder()
|
||||||
|
h := NewEventHandler(recorder, nil)
|
||||||
|
|
||||||
|
h.OnReceiveHeaders(tt.metadata)
|
||||||
|
|
||||||
|
// Check that headers are set correctly
|
||||||
|
for key, expectedValues := range tt.expectedHeader {
|
||||||
|
actualValues := recorder.Header()[key]
|
||||||
|
assert.Equal(t, expectedValues, actualValues, "Header %s should match", key)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Ensure no unexpected headers are set
|
||||||
|
for actualKey := range recorder.Header() {
|
||||||
|
found := false
|
||||||
|
for expectedKey := range tt.expectedHeader {
|
||||||
|
if actualKey == expectedKey {
|
||||||
|
found = true
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
assert.True(t, found, "Unexpected header found: %s", actualKey)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -11,16 +11,40 @@ const (
|
|||||||
metadataPrefix = "gateway-"
|
metadataPrefix = "gateway-"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// OpenTelemetry trace propagation headers that need to be forwarded to gRPC metadata.
|
||||||
|
// These headers are used by the W3C Trace Context standard for distributed tracing.
|
||||||
|
var traceHeaders = map[string]bool{
|
||||||
|
"traceparent": true,
|
||||||
|
"tracestate": true,
|
||||||
|
"baggage": true,
|
||||||
|
}
|
||||||
|
|
||||||
// ProcessHeaders builds the headers for the gateway from HTTP headers.
|
// ProcessHeaders builds the headers for the gateway from HTTP headers.
|
||||||
|
// It forwards both custom metadata headers (with Grpc-Metadata- prefix)
|
||||||
|
// and OpenTelemetry trace propagation headers (traceparent, tracestate, baggage)
|
||||||
|
// to ensure distributed tracing works correctly across the gateway.
|
||||||
func ProcessHeaders(header http.Header) []string {
|
func ProcessHeaders(header http.Header) []string {
|
||||||
var headers []string
|
var headers []string
|
||||||
|
|
||||||
for k, v := range header {
|
for k, v := range header {
|
||||||
|
// Forward OpenTelemetry trace propagation headers
|
||||||
|
// These must be lowercase per gRPC metadata conventions
|
||||||
|
if lowerKey := strings.ToLower(k); traceHeaders[lowerKey] {
|
||||||
|
for _, vv := range v {
|
||||||
|
headers = append(headers, lowerKey+":"+vv)
|
||||||
|
}
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
// Forward custom metadata headers with Grpc-Metadata- prefix
|
||||||
if !strings.HasPrefix(k, metadataHeaderPrefix) {
|
if !strings.HasPrefix(k, metadataHeaderPrefix) {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
key := fmt.Sprintf("%s%s", metadataPrefix, strings.TrimPrefix(k, metadataHeaderPrefix))
|
// gRPC metadata keys are case-insensitive and stored as lowercase,
|
||||||
|
// so we lowercase the key to match gRPC conventions
|
||||||
|
trimmedKey := strings.TrimPrefix(k, metadataHeaderPrefix)
|
||||||
|
key := strings.ToLower(fmt.Sprintf("%s%s", metadataPrefix, trimmedKey))
|
||||||
for _, vv := range v {
|
for _, vv := range v {
|
||||||
headers = append(headers, key+":"+vv)
|
headers = append(headers, key+":"+vv)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -18,5 +18,93 @@ func TestBuildHeadersWithValues(t *testing.T) {
|
|||||||
req := httptest.NewRequest("GET", "/", http.NoBody)
|
req := httptest.NewRequest("GET", "/", http.NoBody)
|
||||||
req.Header.Add("grpc-metadata-a", "b")
|
req.Header.Add("grpc-metadata-a", "b")
|
||||||
req.Header.Add("grpc-metadata-b", "b")
|
req.Header.Add("grpc-metadata-b", "b")
|
||||||
assert.ElementsMatch(t, []string{"gateway-A:b", "gateway-B:b"}, ProcessHeaders(req.Header))
|
assert.ElementsMatch(t, []string{"gateway-a:b", "gateway-b:b"}, ProcessHeaders(req.Header))
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestProcessHeadersWithTraceContext(t *testing.T) {
|
||||||
|
req := httptest.NewRequest("GET", "/", http.NoBody)
|
||||||
|
req.Header.Set("traceparent", "00-4bf92f3577b34da6a3ce929d0e0e4736-00f067aa0ba902b7-01")
|
||||||
|
req.Header.Set("tracestate", "key1=value1,key2=value2")
|
||||||
|
req.Header.Set("baggage", "userId=alice,serverNode=DF:28")
|
||||||
|
|
||||||
|
headers := ProcessHeaders(req.Header)
|
||||||
|
|
||||||
|
assert.Len(t, headers, 3)
|
||||||
|
assert.Contains(t, headers, "traceparent:00-4bf92f3577b34da6a3ce929d0e0e4736-00f067aa0ba902b7-01")
|
||||||
|
assert.Contains(t, headers, "tracestate:key1=value1,key2=value2")
|
||||||
|
assert.Contains(t, headers, "baggage:userId=alice,serverNode=DF:28")
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestProcessHeadersWithMixedHeaders(t *testing.T) {
|
||||||
|
req := httptest.NewRequest("GET", "/", http.NoBody)
|
||||||
|
req.Header.Set("traceparent", "00-4bf92f3577b34da6a3ce929d0e0e4736-00f067aa0ba902b7-01")
|
||||||
|
req.Header.Set("grpc-metadata-custom", "value1")
|
||||||
|
req.Header.Set("content-type", "application/json")
|
||||||
|
req.Header.Set("tracestate", "key1=value1")
|
||||||
|
|
||||||
|
headers := ProcessHeaders(req.Header)
|
||||||
|
|
||||||
|
// Should include trace headers and grpc-metadata headers, but not regular headers
|
||||||
|
assert.Len(t, headers, 3)
|
||||||
|
assert.Contains(t, headers, "traceparent:00-4bf92f3577b34da6a3ce929d0e0e4736-00f067aa0ba902b7-01")
|
||||||
|
assert.Contains(t, headers, "tracestate:key1=value1")
|
||||||
|
assert.Contains(t, headers, "gateway-custom:value1")
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestProcessHeadersTraceparentCaseInsensitive(t *testing.T) {
|
||||||
|
tests := []struct {
|
||||||
|
name string
|
||||||
|
headerKey string
|
||||||
|
headerVal string
|
||||||
|
expectedKey string
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
name: "lowercase traceparent",
|
||||||
|
headerKey: "traceparent",
|
||||||
|
headerVal: "00-trace-span-01",
|
||||||
|
expectedKey: "traceparent",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "uppercase Traceparent",
|
||||||
|
headerKey: "Traceparent",
|
||||||
|
headerVal: "00-trace-span-01",
|
||||||
|
expectedKey: "traceparent",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "mixed case TraceParent",
|
||||||
|
headerKey: "TraceParent",
|
||||||
|
headerVal: "00-trace-span-01",
|
||||||
|
expectedKey: "traceparent",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "lowercase tracestate",
|
||||||
|
headerKey: "tracestate",
|
||||||
|
headerVal: "key=value",
|
||||||
|
expectedKey: "tracestate",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "mixed case TraceState",
|
||||||
|
headerKey: "TraceState",
|
||||||
|
headerVal: "key=value",
|
||||||
|
expectedKey: "tracestate",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, tt := range tests {
|
||||||
|
t.Run(tt.name, func(t *testing.T) {
|
||||||
|
req := httptest.NewRequest("GET", "/", http.NoBody)
|
||||||
|
req.Header.Set(tt.headerKey, tt.headerVal)
|
||||||
|
|
||||||
|
headers := ProcessHeaders(req.Header)
|
||||||
|
|
||||||
|
assert.Len(t, headers, 1)
|
||||||
|
assert.Contains(t, headers, tt.expectedKey+":"+tt.headerVal)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestProcessHeadersEmptyHeaders(t *testing.T) {
|
||||||
|
req := httptest.NewRequest("GET", "/", http.NoBody)
|
||||||
|
headers := ProcessHeaders(req.Header)
|
||||||
|
assert.Empty(t, headers)
|
||||||
}
|
}
|
||||||
|
|||||||
10
go.mod
10
go.mod
@@ -11,17 +11,17 @@ require (
|
|||||||
github.com/golang-jwt/jwt/v4 v4.5.2
|
github.com/golang-jwt/jwt/v4 v4.5.2
|
||||||
github.com/golang/protobuf v1.5.4
|
github.com/golang/protobuf v1.5.4
|
||||||
github.com/google/uuid v1.6.0
|
github.com/google/uuid v1.6.0
|
||||||
github.com/grafana/pyroscope-go v1.2.4
|
github.com/grafana/pyroscope-go v1.2.7
|
||||||
github.com/jackc/pgx/v5 v5.7.4
|
github.com/jackc/pgx/v5 v5.7.4
|
||||||
github.com/jhump/protoreflect v1.17.0
|
github.com/jhump/protoreflect v1.17.0
|
||||||
github.com/pelletier/go-toml/v2 v2.2.2
|
github.com/pelletier/go-toml/v2 v2.2.2
|
||||||
github.com/prometheus/client_golang v1.21.1
|
github.com/prometheus/client_golang v1.21.1
|
||||||
github.com/redis/go-redis/v9 v9.12.1
|
github.com/redis/go-redis/v9 v9.16.0
|
||||||
github.com/spaolacci/murmur3 v1.1.0
|
github.com/spaolacci/murmur3 v1.1.0
|
||||||
github.com/stretchr/testify v1.10.0
|
github.com/stretchr/testify v1.11.1
|
||||||
go.etcd.io/etcd/api/v3 v3.5.15
|
go.etcd.io/etcd/api/v3 v3.5.15
|
||||||
go.etcd.io/etcd/client/v3 v3.5.15
|
go.etcd.io/etcd/client/v3 v3.5.15
|
||||||
go.mongodb.org/mongo-driver/v2 v2.3.0
|
go.mongodb.org/mongo-driver/v2 v2.3.1
|
||||||
go.opentelemetry.io/otel v1.24.0
|
go.opentelemetry.io/otel v1.24.0
|
||||||
go.opentelemetry.io/otel/exporters/jaeger v1.17.0
|
go.opentelemetry.io/otel/exporters/jaeger v1.17.0
|
||||||
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.24.0
|
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.24.0
|
||||||
@@ -72,7 +72,7 @@ require (
|
|||||||
github.com/google/gnostic-models v0.6.8 // indirect
|
github.com/google/gnostic-models v0.6.8 // indirect
|
||||||
github.com/google/go-cmp v0.6.0 // indirect
|
github.com/google/go-cmp v0.6.0 // indirect
|
||||||
github.com/google/gofuzz v1.2.0 // indirect
|
github.com/google/gofuzz v1.2.0 // indirect
|
||||||
github.com/grafana/pyroscope-go/godeltaprof v0.1.8 // indirect
|
github.com/grafana/pyroscope-go/godeltaprof v0.1.9 // indirect
|
||||||
github.com/grpc-ecosystem/grpc-gateway/v2 v2.20.0 // indirect
|
github.com/grpc-ecosystem/grpc-gateway/v2 v2.20.0 // indirect
|
||||||
github.com/h2non/parth v0.0.0-20190131123155-b4df798d6542 // indirect
|
github.com/h2non/parth v0.0.0-20190131123155-b4df798d6542 // indirect
|
||||||
github.com/jackc/pgpassfile v1.0.0 // indirect
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
||||||
|
|||||||
20
go.sum
20
go.sum
@@ -78,10 +78,10 @@ github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1 h1:K6RDEckDVWvDI9JAJY
|
|||||||
github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE=
|
github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE=
|
||||||
github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
|
github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
|
||||||
github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
|
github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
|
||||||
github.com/grafana/pyroscope-go v1.2.4 h1:B22GMXz+O0nWLatxLuaP7o7L9dvP0clLvIpmeEQQM0Q=
|
github.com/grafana/pyroscope-go v1.2.7 h1:VWBBlqxjyR0Cwk2W6UrE8CdcdD80GOFNutj0Kb1T8ac=
|
||||||
github.com/grafana/pyroscope-go v1.2.4/go.mod h1:zzT9QXQAp2Iz2ZdS216UiV8y9uXJYQiGE1q8v1FyhqU=
|
github.com/grafana/pyroscope-go v1.2.7/go.mod h1:o/bpSLiJYYP6HQtvcoVKiE9s5RiNgjYTj1DhiddP2Pc=
|
||||||
github.com/grafana/pyroscope-go/godeltaprof v0.1.8 h1:iwOtYXeeVSAeYefJNaxDytgjKtUuKQbJqgAIjlnicKg=
|
github.com/grafana/pyroscope-go/godeltaprof v0.1.9 h1:c1Us8i6eSmkW+Ez05d3co8kasnuOY813tbMN8i/a3Og=
|
||||||
github.com/grafana/pyroscope-go/godeltaprof v0.1.8/go.mod h1:2+l7K7twW49Ct4wFluZD3tZ6e0SjanjcUUBPVD/UuGU=
|
github.com/grafana/pyroscope-go/godeltaprof v0.1.9/go.mod h1:2+l7K7twW49Ct4wFluZD3tZ6e0SjanjcUUBPVD/UuGU=
|
||||||
github.com/grpc-ecosystem/grpc-gateway/v2 v2.20.0 h1:bkypFPDjIYGfCYD5mRBvpqxfYX1YCS1PXdKYWi8FsN0=
|
github.com/grpc-ecosystem/grpc-gateway/v2 v2.20.0 h1:bkypFPDjIYGfCYD5mRBvpqxfYX1YCS1PXdKYWi8FsN0=
|
||||||
github.com/grpc-ecosystem/grpc-gateway/v2 v2.20.0/go.mod h1:P+Lt/0by1T8bfcF3z737NnSbmxQAppXMRziHUxPOC8k=
|
github.com/grpc-ecosystem/grpc-gateway/v2 v2.20.0/go.mod h1:P+Lt/0by1T8bfcF3z737NnSbmxQAppXMRziHUxPOC8k=
|
||||||
github.com/h2non/parth v0.0.0-20190131123155-b4df798d6542 h1:2VTzZjLZBgl62/EtslCrtky5vbi9dd7HrQPQIx6wqiw=
|
github.com/h2non/parth v0.0.0-20190131123155-b4df798d6542 h1:2VTzZjLZBgl62/EtslCrtky5vbi9dd7HrQPQIx6wqiw=
|
||||||
@@ -154,8 +154,8 @@ github.com/prometheus/common v0.62.0 h1:xasJaQlnWAeyHdUBeGjXmutelfJHWMRr+Fg4QszZ
|
|||||||
github.com/prometheus/common v0.62.0/go.mod h1:vyBcEuLSvWos9B1+CyL7JZ2up+uFzXhkqml0W5zIY1I=
|
github.com/prometheus/common v0.62.0/go.mod h1:vyBcEuLSvWos9B1+CyL7JZ2up+uFzXhkqml0W5zIY1I=
|
||||||
github.com/prometheus/procfs v0.15.1 h1:YagwOFzUgYfKKHX6Dr+sHT7km/hxC76UB0learggepc=
|
github.com/prometheus/procfs v0.15.1 h1:YagwOFzUgYfKKHX6Dr+sHT7km/hxC76UB0learggepc=
|
||||||
github.com/prometheus/procfs v0.15.1/go.mod h1:fB45yRUv8NstnjriLhBQLuOUt+WW4BsoGhij/e3PBqk=
|
github.com/prometheus/procfs v0.15.1/go.mod h1:fB45yRUv8NstnjriLhBQLuOUt+WW4BsoGhij/e3PBqk=
|
||||||
github.com/redis/go-redis/v9 v9.12.1 h1:k5iquqv27aBtnTm2tIkROUDp8JBXhXZIVu1InSgvovg=
|
github.com/redis/go-redis/v9 v9.16.0 h1:OotgqgLSRCmzfqChbQyG1PHC3tLNR89DG4jdOERSEP4=
|
||||||
github.com/redis/go-redis/v9 v9.12.1/go.mod h1:huWgSWd8mW6+m0VPhJjSSQ+d6Nh1VICQ6Q5lHuCH/Iw=
|
github.com/redis/go-redis/v9 v9.16.0/go.mod h1:u410H11HMLoB+TP67dz8rL9s6QW2j76l0//kSOd3370=
|
||||||
github.com/rivo/uniseg v0.2.0 h1:S1pD9weZBuJdFmowNwbpi7BJ8TNftyUImj/0WQi72jY=
|
github.com/rivo/uniseg v0.2.0 h1:S1pD9weZBuJdFmowNwbpi7BJ8TNftyUImj/0WQi72jY=
|
||||||
github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc=
|
github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc=
|
||||||
github.com/rogpeppe/go-internal v1.10.0 h1:TMyTOH3F/DB16zRVcYyreMH6GnZZrwQVAoYjRBZyWFQ=
|
github.com/rogpeppe/go-internal v1.10.0 h1:TMyTOH3F/DB16zRVcYyreMH6GnZZrwQVAoYjRBZyWFQ=
|
||||||
@@ -176,8 +176,8 @@ github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO
|
|||||||
github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
|
github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
|
||||||
github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo=
|
github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo=
|
||||||
github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
|
github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
|
||||||
github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA=
|
github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U=
|
||||||
github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
|
github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U=
|
||||||
github.com/xdg-go/pbkdf2 v1.0.0 h1:Su7DPu48wXMwC3bs7MCNG+z4FhcyEuz5dlvchbq0B0c=
|
github.com/xdg-go/pbkdf2 v1.0.0 h1:Su7DPu48wXMwC3bs7MCNG+z4FhcyEuz5dlvchbq0B0c=
|
||||||
github.com/xdg-go/pbkdf2 v1.0.0/go.mod h1:jrpuAogTd400dnrH08LKmI/xc1MbPOebTwRqcT5RDeI=
|
github.com/xdg-go/pbkdf2 v1.0.0/go.mod h1:jrpuAogTd400dnrH08LKmI/xc1MbPOebTwRqcT5RDeI=
|
||||||
github.com/xdg-go/scram v1.1.2 h1:FHX5I5B4i4hKRVRBCFRxq1iQRej7WO3hhBuJf+UUySY=
|
github.com/xdg-go/scram v1.1.2 h1:FHX5I5B4i4hKRVRBCFRxq1iQRej7WO3hhBuJf+UUySY=
|
||||||
@@ -197,8 +197,8 @@ go.etcd.io/etcd/client/pkg/v3 v3.5.15 h1:fo0HpWz/KlHGMCC+YejpiCmyWDEuIpnTDzpJLB5
|
|||||||
go.etcd.io/etcd/client/pkg/v3 v3.5.15/go.mod h1:mXDI4NAOwEiszrHCb0aqfAYNCrZP4e9hRca3d1YK8EU=
|
go.etcd.io/etcd/client/pkg/v3 v3.5.15/go.mod h1:mXDI4NAOwEiszrHCb0aqfAYNCrZP4e9hRca3d1YK8EU=
|
||||||
go.etcd.io/etcd/client/v3 v3.5.15 h1:23M0eY4Fd/inNv1ZfU3AxrbbOdW79r9V9Rl62Nm6ip4=
|
go.etcd.io/etcd/client/v3 v3.5.15 h1:23M0eY4Fd/inNv1ZfU3AxrbbOdW79r9V9Rl62Nm6ip4=
|
||||||
go.etcd.io/etcd/client/v3 v3.5.15/go.mod h1:CLSJxrYjvLtHsrPKsy7LmZEE+DK2ktfd2bN4RhBMwlU=
|
go.etcd.io/etcd/client/v3 v3.5.15/go.mod h1:CLSJxrYjvLtHsrPKsy7LmZEE+DK2ktfd2bN4RhBMwlU=
|
||||||
go.mongodb.org/mongo-driver/v2 v2.3.0 h1:sh55yOXA2vUjW1QYw/2tRlHSQViwDyPnW61AwpZ4rtU=
|
go.mongodb.org/mongo-driver/v2 v2.3.1 h1:WrCgSzO7dh1/FrePud9dK5fKNZOE97q5EQimGkos7Wo=
|
||||||
go.mongodb.org/mongo-driver/v2 v2.3.0/go.mod h1:jHeEDJHJq7tm6ZF45Issun9dbogjfnPySb1vXA7EeAI=
|
go.mongodb.org/mongo-driver/v2 v2.3.1/go.mod h1:jHeEDJHJq7tm6ZF45Issun9dbogjfnPySb1vXA7EeAI=
|
||||||
go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo=
|
go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo=
|
||||||
go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo=
|
go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo=
|
||||||
go.opentelemetry.io/otel/exporters/jaeger v1.17.0 h1:D7UpUy2Xc2wsi1Ras6V40q806WM07rqoCWzXu7Sqy+4=
|
go.opentelemetry.io/otel/exporters/jaeger v1.17.0 h1:D7UpUy2Xc2wsi1Ras6V40q806WM07rqoCWzXu7Sqy+4=
|
||||||
|
|||||||
@@ -175,7 +175,7 @@ GO111MODULE=on GOPROXY=https://goproxy.cn/,direct go get -u github.com/zeromicro
|
|||||||
|
|
||||||
* API 文档
|
* API 文档
|
||||||
|
|
||||||
[https://go-zero.dev/cn/](https://go-zero.dev/cn/)
|
[https://go-zero.dev](https://go-zero.dev)
|
||||||
|
|
||||||
* awesome 系列(更多文章见『微服务实践』公众号)
|
* awesome 系列(更多文章见『微服务实践』公众号)
|
||||||
|
|
||||||
@@ -304,6 +304,8 @@ go-zero 已被许多公司用于生产部署,接入场景如在线教育、电
|
|||||||
>106. 无锡盛算信息技术有限公司
|
>106. 无锡盛算信息技术有限公司
|
||||||
>107. 深圳市聚货通信息科技有限公司
|
>107. 深圳市聚货通信息科技有限公司
|
||||||
>108. 浙江银盾云科技有限公司
|
>108. 浙江银盾云科技有限公司
|
||||||
|
>109. 南京造世网络科技有限公司
|
||||||
|
>110. 温州飞儿云信息技术有限公司
|
||||||
|
|
||||||
如果贵公司也已使用 go-zero,欢迎在 [登记地址](https://github.com/zeromicro/go-zero/issues/602) 登记,仅仅为了推广,不做其它用途。
|
如果贵公司也已使用 go-zero,欢迎在 [登记地址](https://github.com/zeromicro/go-zero/issues/602) 登记,仅仅为了推广,不做其它用途。
|
||||||
|
|
||||||
|
|||||||
@@ -389,7 +389,9 @@ func buildSSERoutes(routes []Route) []Route {
|
|||||||
// because SSE requires the connection to be kept alive indefinitely.
|
// because SSE requires the connection to be kept alive indefinitely.
|
||||||
rc := http.NewResponseController(w)
|
rc := http.NewResponseController(w)
|
||||||
if err := rc.SetWriteDeadline(time.Time{}); err != nil {
|
if err := rc.SetWriteDeadline(time.Time{}); err != nil {
|
||||||
logc.Errorf(r.Context(), "set conn write deadline failed: %v", err)
|
// Some ResponseWriter implementations (like timeoutWriter) don't support SetWriteDeadline.
|
||||||
|
// This is expected behavior and doesn't affect SSE functionality.
|
||||||
|
logc.Debugf(r.Context(), "unable to clear write deadline for SSE connection: %v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
w.Header().Set(header.ContentType, header.ContentTypeEventStream)
|
w.Header().Set(header.ContentType, header.ContentTypeEventStream)
|
||||||
|
|||||||
@@ -24,12 +24,16 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
limitBodyBytes = 1024
|
limitBodyBytes = 1024
|
||||||
limitDetailedBodyBytes = 4096
|
limitDetailedBodyBytes = 4096
|
||||||
defaultSlowThreshold = time.Millisecond * 500
|
defaultSlowThreshold = time.Millisecond * 500
|
||||||
|
defaultSSESlowThreshold = time.Minute * 3
|
||||||
)
|
)
|
||||||
|
|
||||||
var slowThreshold = syncx.ForAtomicDuration(defaultSlowThreshold)
|
var (
|
||||||
|
slowThreshold = syncx.ForAtomicDuration(defaultSlowThreshold)
|
||||||
|
sseSlowThreshold = syncx.ForAtomicDuration(defaultSSESlowThreshold)
|
||||||
|
)
|
||||||
|
|
||||||
// LogHandler returns a middleware that logs http request and response.
|
// LogHandler returns a middleware that logs http request and response.
|
||||||
func LogHandler(next http.Handler) http.Handler {
|
func LogHandler(next http.Handler) http.Handler {
|
||||||
@@ -109,6 +113,11 @@ func SetSlowThreshold(threshold time.Duration) {
|
|||||||
slowThreshold.Set(threshold)
|
slowThreshold.Set(threshold)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// SetSSESlowThreshold sets the slow threshold for SSE requests.
|
||||||
|
func SetSSESlowThreshold(threshold time.Duration) {
|
||||||
|
sseSlowThreshold.Set(threshold)
|
||||||
|
}
|
||||||
|
|
||||||
func dumpRequest(r *http.Request) string {
|
func dumpRequest(r *http.Request) string {
|
||||||
reqContent, err := httputil.DumpRequest(r, true)
|
reqContent, err := httputil.DumpRequest(r, true)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@@ -118,6 +127,14 @@ func dumpRequest(r *http.Request) string {
|
|||||||
return string(reqContent)
|
return string(reqContent)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func getSlowThreshold(r *http.Request) time.Duration {
|
||||||
|
if r.Header.Get(headerAccept) == valueSSE {
|
||||||
|
return sseSlowThreshold.Load()
|
||||||
|
} else {
|
||||||
|
return slowThreshold.Load()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func isOkResponse(code int) bool {
|
func isOkResponse(code int) bool {
|
||||||
// not server error
|
// not server error
|
||||||
return code < http.StatusInternalServerError
|
return code < http.StatusInternalServerError
|
||||||
@@ -129,7 +146,8 @@ func logBrief(r *http.Request, code int, timer *utils.ElapsedTimer, logs *intern
|
|||||||
logger := logx.WithContext(r.Context()).WithDuration(duration)
|
logger := logx.WithContext(r.Context()).WithDuration(duration)
|
||||||
buf.WriteString(fmt.Sprintf("[HTTP] %s - %s %s - %s - %s",
|
buf.WriteString(fmt.Sprintf("[HTTP] %s - %s %s - %s - %s",
|
||||||
wrapStatusCode(code), wrapMethod(r.Method), r.RequestURI, httpx.GetRemoteAddr(r), r.UserAgent()))
|
wrapStatusCode(code), wrapMethod(r.Method), r.RequestURI, httpx.GetRemoteAddr(r), r.UserAgent()))
|
||||||
if duration > slowThreshold.Load() {
|
|
||||||
|
if duration > getSlowThreshold(r) {
|
||||||
logger.Slowf("[HTTP] %s - %s %s - %s - %s - slowcall(%s)",
|
logger.Slowf("[HTTP] %s - %s %s - %s - %s - slowcall(%s)",
|
||||||
wrapStatusCode(code), wrapMethod(r.Method), r.RequestURI, httpx.GetRemoteAddr(r), r.UserAgent(),
|
wrapStatusCode(code), wrapMethod(r.Method), r.RequestURI, httpx.GetRemoteAddr(r), r.UserAgent(),
|
||||||
timex.ReprOfDuration(duration))
|
timex.ReprOfDuration(duration))
|
||||||
@@ -160,7 +178,8 @@ func logDetails(r *http.Request, response *detailLoggedResponseWriter, timer *ut
|
|||||||
logger := logx.WithContext(r.Context())
|
logger := logx.WithContext(r.Context())
|
||||||
buf.WriteString(fmt.Sprintf("[HTTP] %s - %d - %s - %s\n=> %s\n",
|
buf.WriteString(fmt.Sprintf("[HTTP] %s - %d - %s - %s\n=> %s\n",
|
||||||
r.Method, code, r.RemoteAddr, timex.ReprOfDuration(duration), dumpRequest(r)))
|
r.Method, code, r.RemoteAddr, timex.ReprOfDuration(duration), dumpRequest(r)))
|
||||||
if duration > slowThreshold.Load() {
|
|
||||||
|
if duration > getSlowThreshold(r) {
|
||||||
logger.Slowf("[HTTP] %s - %d - %s - slowcall(%s)\n=> %s\n", r.Method, code, r.RemoteAddr,
|
logger.Slowf("[HTTP] %s - %d - %s - slowcall(%s)\n=> %s\n", r.Method, code, r.RemoteAddr,
|
||||||
timex.ReprOfDuration(duration), dumpRequest(r))
|
timex.ReprOfDuration(duration), dumpRequest(r))
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -88,6 +88,96 @@ func TestLogHandlerSlow(t *testing.T) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestLogHandlerSSE(t *testing.T) {
|
||||||
|
handlers := []func(handler http.Handler) http.Handler{
|
||||||
|
LogHandler,
|
||||||
|
DetailedLogHandler,
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, logHandler := range handlers {
|
||||||
|
t.Run("SSE request with normal duration", func(t *testing.T) {
|
||||||
|
req := httptest.NewRequest(http.MethodGet, "http://localhost", http.NoBody)
|
||||||
|
req.Header.Set(headerAccept, valueSSE)
|
||||||
|
|
||||||
|
handler := logHandler(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||||
|
time.Sleep(defaultSlowThreshold + time.Second)
|
||||||
|
w.WriteHeader(http.StatusOK)
|
||||||
|
}))
|
||||||
|
|
||||||
|
resp := httptest.NewRecorder()
|
||||||
|
handler.ServeHTTP(resp, req)
|
||||||
|
assert.Equal(t, http.StatusOK, resp.Code)
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("SSE request exceeding SSE threshold", func(t *testing.T) {
|
||||||
|
originalThreshold := sseSlowThreshold.Load()
|
||||||
|
SetSSESlowThreshold(time.Millisecond * 100)
|
||||||
|
defer SetSSESlowThreshold(originalThreshold)
|
||||||
|
|
||||||
|
req := httptest.NewRequest(http.MethodGet, "http://localhost", http.NoBody)
|
||||||
|
req.Header.Set(headerAccept, valueSSE)
|
||||||
|
|
||||||
|
handler := logHandler(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||||
|
time.Sleep(time.Millisecond * 150)
|
||||||
|
w.WriteHeader(http.StatusOK)
|
||||||
|
}))
|
||||||
|
|
||||||
|
resp := httptest.NewRecorder()
|
||||||
|
handler.ServeHTTP(resp, req)
|
||||||
|
assert.Equal(t, http.StatusOK, resp.Code)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestLogHandlerThresholdSelection(t *testing.T) {
|
||||||
|
tests := []struct {
|
||||||
|
name string
|
||||||
|
acceptHeader string
|
||||||
|
expectedIsSSE bool
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
name: "Regular HTTP request",
|
||||||
|
acceptHeader: "text/html",
|
||||||
|
expectedIsSSE: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "SSE request",
|
||||||
|
acceptHeader: valueSSE,
|
||||||
|
expectedIsSSE: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "No Accept header",
|
||||||
|
acceptHeader: "",
|
||||||
|
expectedIsSSE: false,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, tt := range tests {
|
||||||
|
t.Run(tt.name, func(t *testing.T) {
|
||||||
|
req := httptest.NewRequest(http.MethodGet, "http://localhost", http.NoBody)
|
||||||
|
if tt.acceptHeader != "" {
|
||||||
|
req.Header.Set(headerAccept, tt.acceptHeader)
|
||||||
|
}
|
||||||
|
|
||||||
|
SetSlowThreshold(time.Millisecond * 100)
|
||||||
|
SetSSESlowThreshold(time.Millisecond * 200)
|
||||||
|
defer func() {
|
||||||
|
SetSlowThreshold(defaultSlowThreshold)
|
||||||
|
SetSSESlowThreshold(defaultSSESlowThreshold)
|
||||||
|
}()
|
||||||
|
|
||||||
|
handler := LogHandler(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||||
|
time.Sleep(time.Millisecond * 150)
|
||||||
|
w.WriteHeader(http.StatusOK)
|
||||||
|
}))
|
||||||
|
|
||||||
|
resp := httptest.NewRecorder()
|
||||||
|
handler.ServeHTTP(resp, req)
|
||||||
|
assert.Equal(t, http.StatusOK, resp.Code)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func TestDetailedLogHandler_LargeBody(t *testing.T) {
|
func TestDetailedLogHandler_LargeBody(t *testing.T) {
|
||||||
lbuf := logtest.NewCollector(t)
|
lbuf := logtest.NewCollector(t)
|
||||||
|
|
||||||
@@ -139,6 +229,12 @@ func TestSetSlowThreshold(t *testing.T) {
|
|||||||
assert.Equal(t, time.Second, slowThreshold.Load())
|
assert.Equal(t, time.Second, slowThreshold.Load())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestSetSSESlowThreshold(t *testing.T) {
|
||||||
|
assert.Equal(t, defaultSSESlowThreshold, sseSlowThreshold.Load())
|
||||||
|
SetSSESlowThreshold(time.Minute * 10)
|
||||||
|
assert.Equal(t, time.Minute*10, sseSlowThreshold.Load())
|
||||||
|
}
|
||||||
|
|
||||||
func TestWrapMethodWithColor(t *testing.T) {
|
func TestWrapMethodWithColor(t *testing.T) {
|
||||||
// no tty
|
// no tty
|
||||||
assert.Equal(t, http.MethodGet, wrapMethod(http.MethodGet))
|
assert.Equal(t, http.MethodGet, wrapMethod(http.MethodGet))
|
||||||
|
|||||||
@@ -92,7 +92,7 @@ Port: 0
|
|||||||
Path: "/",
|
Path: "/",
|
||||||
Handler: nil,
|
Handler: nil,
|
||||||
}, WithJwt("thesecret"), WithSignature(SignatureConf{}),
|
}, WithJwt("thesecret"), WithSignature(SignatureConf{}),
|
||||||
WithJwtTransition("preivous", "thenewone"))
|
WithJwtTransition("previous", "thenewone"))
|
||||||
|
|
||||||
func() {
|
func() {
|
||||||
defer func() {
|
defer func() {
|
||||||
|
|||||||
@@ -90,6 +90,7 @@ func init() {
|
|||||||
newCmdFlags.StringVar(&new.VarStringHome, "home")
|
newCmdFlags.StringVar(&new.VarStringHome, "home")
|
||||||
newCmdFlags.StringVar(&new.VarStringRemote, "remote")
|
newCmdFlags.StringVar(&new.VarStringRemote, "remote")
|
||||||
newCmdFlags.StringVar(&new.VarStringBranch, "branch")
|
newCmdFlags.StringVar(&new.VarStringBranch, "branch")
|
||||||
|
newCmdFlags.StringVar(&new.VarStringModule, "module")
|
||||||
newCmdFlags.StringVarWithDefaultValue(&new.VarStringStyle, "style", config.DefaultFormat)
|
newCmdFlags.StringVarWithDefaultValue(&new.VarStringStyle, "style", config.DefaultFormat)
|
||||||
|
|
||||||
pluginCmdFlags.StringVarP(&plugin.VarStringPlugin, "plugin", "p")
|
pluginCmdFlags.StringVarP(&plugin.VarStringPlugin, "plugin", "p")
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ import '../vars/vars.dart';
|
|||||||
/// Send GET request.
|
/// Send GET request.
|
||||||
///
|
///
|
||||||
/// ok: the function that will be called on success.
|
/// ok: the function that will be called on success.
|
||||||
/// fail:the fuction that will be called on failure.
|
/// fail:the function that will be called on failure.
|
||||||
/// eventually:the function that will be called regardless of success or failure.
|
/// eventually:the function that will be called regardless of success or failure.
|
||||||
Future apiGet(String path,
|
Future apiGet(String path,
|
||||||
{Map<String, String> header,
|
{Map<String, String> header,
|
||||||
@@ -47,7 +47,7 @@ Future apiGet(String path,
|
|||||||
///
|
///
|
||||||
/// data: the data to post, it will be marshaled to json automatically.
|
/// data: the data to post, it will be marshaled to json automatically.
|
||||||
/// ok: the function that will be called on success.
|
/// ok: the function that will be called on success.
|
||||||
/// fail:the fuction that will be called on failure.
|
/// fail:the function that will be called on failure.
|
||||||
/// eventually:the function that will be called regardless of success or failure.
|
/// eventually:the function that will be called regardless of success or failure.
|
||||||
Future apiPost(String path, dynamic data,
|
Future apiPost(String path, dynamic data,
|
||||||
{Map<String, String> header,
|
{Map<String, String> header,
|
||||||
|
|||||||
@@ -1,3 +1,6 @@
|
|||||||
|
// Code scaffolded by goctl. Safe to edit.
|
||||||
|
// goctl {{.version}}
|
||||||
|
|
||||||
package config
|
package config
|
||||||
|
|
||||||
import {{.authImport}}
|
import {{.authImport}}
|
||||||
|
|||||||
@@ -75,6 +75,11 @@ func GoCommand(_ *cobra.Command, _ []string) error {
|
|||||||
|
|
||||||
// DoGenProject gen go project files with api file
|
// DoGenProject gen go project files with api file
|
||||||
func DoGenProject(apiFile, dir, style string, withTest bool) error {
|
func DoGenProject(apiFile, dir, style string, withTest bool) error {
|
||||||
|
return DoGenProjectWithModule(apiFile, dir, "", style, withTest)
|
||||||
|
}
|
||||||
|
|
||||||
|
// DoGenProjectWithModule gen go project files with api file using custom module name
|
||||||
|
func DoGenProjectWithModule(apiFile, dir, moduleName, style string, withTest bool) error {
|
||||||
api, err := parser.Parse(apiFile)
|
api, err := parser.Parse(apiFile)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
@@ -90,23 +95,31 @@ func DoGenProject(apiFile, dir, style string, withTest bool) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
logx.Must(pathx.MkdirIfNotExist(dir))
|
logx.Must(pathx.MkdirIfNotExist(dir))
|
||||||
rootPkg, err := golang.GetParentPackage(dir)
|
|
||||||
|
var rootPkg, projectPkg string
|
||||||
|
if len(moduleName) > 0 {
|
||||||
|
rootPkg, projectPkg, err = golang.GetParentPackageWithModule(dir, moduleName)
|
||||||
|
} else {
|
||||||
|
rootPkg, projectPkg, err = golang.GetParentPackage(dir)
|
||||||
|
}
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
logx.Must(genEtc(dir, cfg, api))
|
logx.Must(genEtc(dir, cfg, api))
|
||||||
logx.Must(genConfig(dir, cfg, api))
|
logx.Must(genConfig(dir, projectPkg, cfg, api))
|
||||||
logx.Must(genMain(dir, rootPkg, cfg, api))
|
logx.Must(genMain(dir, rootPkg, projectPkg, cfg, api))
|
||||||
logx.Must(genServiceContext(dir, rootPkg, cfg, api))
|
logx.Must(genServiceContext(dir, rootPkg, projectPkg, cfg, api))
|
||||||
logx.Must(genTypes(dir, cfg, api))
|
logx.Must(genTypes(dir, cfg, api))
|
||||||
logx.Must(genRoutes(dir, rootPkg, cfg, api))
|
logx.Must(genRoutes(dir, rootPkg, projectPkg, cfg, api))
|
||||||
logx.Must(genHandlers(dir, rootPkg, cfg, api))
|
logx.Must(genHandlers(dir, rootPkg, projectPkg, cfg, api))
|
||||||
logx.Must(genLogic(dir, rootPkg, cfg, api))
|
logx.Must(genLogic(dir, rootPkg, projectPkg, cfg, api))
|
||||||
logx.Must(genMiddleware(dir, cfg, api))
|
logx.Must(genMiddleware(dir, cfg, api))
|
||||||
if withTest {
|
if withTest {
|
||||||
logx.Must(genHandlersTest(dir, rootPkg, cfg, api))
|
logx.Must(genHandlersTest(dir, rootPkg, projectPkg, cfg, api))
|
||||||
logx.Must(genLogicTest(dir, rootPkg, cfg, api))
|
logx.Must(genLogicTest(dir, rootPkg, projectPkg, cfg, api))
|
||||||
|
logx.Must(genServiceContextTest(dir, rootPkg, projectPkg, cfg, api))
|
||||||
|
logx.Must(genIntegrationTest(dir, rootPkg, projectPkg, cfg, api))
|
||||||
}
|
}
|
||||||
|
|
||||||
if err := backupAndSweep(apiFile); err != nil {
|
if err := backupAndSweep(apiFile); err != nil {
|
||||||
|
|||||||
181
tools/goctl/api/gogen/gencomment_test.go
Normal file
181
tools/goctl/api/gogen/gencomment_test.go
Normal file
@@ -0,0 +1,181 @@
|
|||||||
|
package gogen
|
||||||
|
|
||||||
|
import (
|
||||||
|
"os"
|
||||||
|
"path/filepath"
|
||||||
|
"strings"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
|
"github.com/stretchr/testify/require"
|
||||||
|
"github.com/zeromicro/go-zero/tools/goctl/internal/version"
|
||||||
|
)
|
||||||
|
|
||||||
|
// TestGenerationComments verifies that all generated files have appropriate generation comments
|
||||||
|
func TestGenerationComments(t *testing.T) {
|
||||||
|
// Create a temporary directory for our test
|
||||||
|
tempDir, err := os.MkdirTemp("", "goctl_test_")
|
||||||
|
require.NoError(t, err)
|
||||||
|
defer os.RemoveAll(tempDir)
|
||||||
|
|
||||||
|
// Create a simple API spec for testing
|
||||||
|
apiContent := `
|
||||||
|
syntax = "v1"
|
||||||
|
|
||||||
|
type HelloRequest {
|
||||||
|
Name string ` + "`json:\"name\"`" + `
|
||||||
|
}
|
||||||
|
|
||||||
|
type HelloResponse {
|
||||||
|
Message string ` + "`json:\"message\"`" + `
|
||||||
|
}
|
||||||
|
|
||||||
|
service hello-api {
|
||||||
|
@handler helloHandler
|
||||||
|
post /hello (HelloRequest) returns (HelloResponse)
|
||||||
|
}`
|
||||||
|
|
||||||
|
// Write the API spec to a temporary file
|
||||||
|
apiFile := filepath.Join(tempDir, "test.api")
|
||||||
|
err = os.WriteFile(apiFile, []byte(apiContent), 0644)
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
// Parse and generate the API files using the correct function signature
|
||||||
|
err = DoGenProject(apiFile, tempDir, "gozero", false)
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
// Define expected files and their comment types
|
||||||
|
expectedFiles := map[string]string{
|
||||||
|
// Files that should have "DO NOT EDIT" comments (regenerated files)
|
||||||
|
"internal/types/types.go": "DO NOT EDIT",
|
||||||
|
|
||||||
|
// Files that should have "Safe to edit" comments (scaffolded files)
|
||||||
|
"internal/handler/hellohandler.go": "Safe to edit",
|
||||||
|
"internal/config/config.go": "Safe to edit",
|
||||||
|
"hello.go": "Safe to edit", // main file
|
||||||
|
"internal/svc/servicecontext.go": "Safe to edit",
|
||||||
|
"internal/logic/hellologic.go": "Safe to edit",
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check each file for the correct generation comment
|
||||||
|
for filePath, expectedCommentType := range expectedFiles {
|
||||||
|
fullPath := filepath.Join(tempDir, filePath)
|
||||||
|
|
||||||
|
// Skip if file doesn't exist (some files might not be generated in all cases)
|
||||||
|
if _, err := os.Stat(fullPath); os.IsNotExist(err) {
|
||||||
|
t.Logf("File %s does not exist, skipping", filePath)
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
content, err := os.ReadFile(fullPath)
|
||||||
|
require.NoError(t, err, "Failed to read file: %s", filePath)
|
||||||
|
|
||||||
|
contentStr := string(content)
|
||||||
|
lines := strings.Split(contentStr, "\n")
|
||||||
|
|
||||||
|
// Check that the file starts with proper generation comments
|
||||||
|
require.GreaterOrEqual(t, len(lines), 2, "File %s should have at least 2 lines", filePath)
|
||||||
|
|
||||||
|
if expectedCommentType == "DO NOT EDIT" {
|
||||||
|
assert.Contains(t, lines[0], "// Code generated by goctl. DO NOT EDIT.",
|
||||||
|
"File %s should have 'DO NOT EDIT' comment as first line", filePath)
|
||||||
|
} else if expectedCommentType == "Safe to edit" {
|
||||||
|
assert.Contains(t, lines[0], "// Code scaffolded by goctl. Safe to edit.",
|
||||||
|
"File %s should have 'Safe to edit' comment as first line", filePath)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check that the second line contains the version
|
||||||
|
assert.Contains(t, lines[1], "// goctl",
|
||||||
|
"File %s should have version comment as second line", filePath)
|
||||||
|
assert.Contains(t, lines[1], version.BuildVersion,
|
||||||
|
"File %s should contain version %s in second line", filePath, version.BuildVersion)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// TestRoutesGenerationComment verifies routes files have "DO NOT EDIT" comment
|
||||||
|
func TestRoutesGenerationComment(t *testing.T) {
|
||||||
|
// Create a temporary directory for our test
|
||||||
|
tempDir, err := os.MkdirTemp("", "goctl_routes_test_")
|
||||||
|
require.NoError(t, err)
|
||||||
|
defer os.RemoveAll(tempDir)
|
||||||
|
|
||||||
|
// Create an API spec with multiple handlers to ensure routes file is generated
|
||||||
|
apiContent := `
|
||||||
|
syntax = "v1"
|
||||||
|
|
||||||
|
type HelloRequest {
|
||||||
|
Name string ` + "`json:\"name\"`" + `
|
||||||
|
}
|
||||||
|
|
||||||
|
type HelloResponse {
|
||||||
|
Message string ` + "`json:\"message\"`" + `
|
||||||
|
}
|
||||||
|
|
||||||
|
service hello-api {
|
||||||
|
@handler helloHandler
|
||||||
|
post /hello (HelloRequest) returns (HelloResponse)
|
||||||
|
|
||||||
|
@handler worldHandler
|
||||||
|
get /world returns (HelloResponse)
|
||||||
|
}`
|
||||||
|
|
||||||
|
// Write the API spec to a temporary file
|
||||||
|
apiFile := filepath.Join(tempDir, "test.api")
|
||||||
|
err = os.WriteFile(apiFile, []byte(apiContent), 0644)
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
// Generate the API files using the correct function signature
|
||||||
|
err = DoGenProject(apiFile, tempDir, "gozero", false)
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
// Check the routes file specifically
|
||||||
|
routesFile := filepath.Join(tempDir, "internal/handler/routes.go")
|
||||||
|
if _, err := os.Stat(routesFile); os.IsNotExist(err) {
|
||||||
|
t.Skip("Routes file not generated, skipping test")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
content, err := os.ReadFile(routesFile)
|
||||||
|
require.NoError(t, err, "Failed to read routes.go")
|
||||||
|
|
||||||
|
contentStr := string(content)
|
||||||
|
lines := strings.Split(contentStr, "\n")
|
||||||
|
|
||||||
|
// Check that routes.go has "DO NOT EDIT" comment
|
||||||
|
require.GreaterOrEqual(t, len(lines), 2, "Routes file should have at least 2 lines")
|
||||||
|
assert.Contains(t, lines[0], "// Code generated by goctl. DO NOT EDIT.",
|
||||||
|
"Routes file should have 'DO NOT EDIT' comment")
|
||||||
|
assert.Contains(t, lines[1], "// goctl",
|
||||||
|
"Routes file should have version comment")
|
||||||
|
assert.Contains(t, lines[1], version.BuildVersion,
|
||||||
|
"Routes file should contain version %s", version.BuildVersion)
|
||||||
|
}
|
||||||
|
|
||||||
|
// TestVersionInTemplateData verifies that version is correctly passed to templates
|
||||||
|
func TestVersionInTemplateData(t *testing.T) {
|
||||||
|
// Test that BuildVersion is available
|
||||||
|
assert.NotEmpty(t, version.BuildVersion, "BuildVersion should not be empty")
|
||||||
|
}
|
||||||
|
|
||||||
|
// TestCommentsFollowGoStandards verifies our comments follow Go community standards
|
||||||
|
func TestCommentsFollowGoStandards(t *testing.T) {
|
||||||
|
// Test the format of our generation comments
|
||||||
|
doNotEditComment := "// Code generated by goctl. DO NOT EDIT."
|
||||||
|
safeToEditComment := "// Code scaffolded by goctl. Safe to edit."
|
||||||
|
|
||||||
|
// Both should be valid Go comments
|
||||||
|
assert.True(t, strings.HasPrefix(doNotEditComment, "//"),
|
||||||
|
"DO NOT EDIT comment should start with //")
|
||||||
|
assert.True(t, strings.HasPrefix(safeToEditComment, "//"),
|
||||||
|
"Safe to edit comment should start with //")
|
||||||
|
|
||||||
|
// Should contain key information
|
||||||
|
assert.Contains(t, doNotEditComment, "goctl",
|
||||||
|
"DO NOT EDIT comment should mention goctl")
|
||||||
|
assert.Contains(t, safeToEditComment, "goctl",
|
||||||
|
"Safe to edit comment should mention goctl")
|
||||||
|
assert.Contains(t, doNotEditComment, "DO NOT EDIT",
|
||||||
|
"Should clearly state DO NOT EDIT")
|
||||||
|
assert.Contains(t, safeToEditComment, "Safe to edit",
|
||||||
|
"Should clearly state Safe to edit")
|
||||||
|
}
|
||||||
@@ -7,6 +7,7 @@ import (
|
|||||||
|
|
||||||
"github.com/zeromicro/go-zero/tools/goctl/api/spec"
|
"github.com/zeromicro/go-zero/tools/goctl/api/spec"
|
||||||
"github.com/zeromicro/go-zero/tools/goctl/config"
|
"github.com/zeromicro/go-zero/tools/goctl/config"
|
||||||
|
"github.com/zeromicro/go-zero/tools/goctl/internal/version"
|
||||||
"github.com/zeromicro/go-zero/tools/goctl/util/format"
|
"github.com/zeromicro/go-zero/tools/goctl/util/format"
|
||||||
"github.com/zeromicro/go-zero/tools/goctl/vars"
|
"github.com/zeromicro/go-zero/tools/goctl/vars"
|
||||||
)
|
)
|
||||||
@@ -29,7 +30,7 @@ const (
|
|||||||
//go:embed config.tpl
|
//go:embed config.tpl
|
||||||
var configTemplate string
|
var configTemplate string
|
||||||
|
|
||||||
func genConfig(dir string, cfg *config.Config, api *spec.ApiSpec) error {
|
func genConfig(dir, projectPkg string, cfg *config.Config, api *spec.ApiSpec) error {
|
||||||
filename, err := format.FileNamingFormat(cfg.NamingFormat, configFile)
|
filename, err := format.FileNamingFormat(cfg.NamingFormat, configFile)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
@@ -60,6 +61,8 @@ func genConfig(dir string, cfg *config.Config, api *spec.ApiSpec) error {
|
|||||||
"authImport": authImportStr,
|
"authImport": authImportStr,
|
||||||
"auth": strings.Join(auths, "\n"),
|
"auth": strings.Join(auths, "\n"),
|
||||||
"jwtTrans": strings.Join(jwtTransList, "\n"),
|
"jwtTrans": strings.Join(jwtTransList, "\n"),
|
||||||
|
"projectPkg": projectPkg,
|
||||||
|
"version": version.BuildVersion,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ import (
|
|||||||
|
|
||||||
"github.com/zeromicro/go-zero/tools/goctl/api/spec"
|
"github.com/zeromicro/go-zero/tools/goctl/api/spec"
|
||||||
"github.com/zeromicro/go-zero/tools/goctl/config"
|
"github.com/zeromicro/go-zero/tools/goctl/config"
|
||||||
|
"github.com/zeromicro/go-zero/tools/goctl/internal/version"
|
||||||
"github.com/zeromicro/go-zero/tools/goctl/util"
|
"github.com/zeromicro/go-zero/tools/goctl/util"
|
||||||
"github.com/zeromicro/go-zero/tools/goctl/util/format"
|
"github.com/zeromicro/go-zero/tools/goctl/util/format"
|
||||||
"github.com/zeromicro/go-zero/tools/goctl/util/pathx"
|
"github.com/zeromicro/go-zero/tools/goctl/util/pathx"
|
||||||
@@ -22,7 +23,7 @@ var (
|
|||||||
sseHandlerTemplate string
|
sseHandlerTemplate string
|
||||||
)
|
)
|
||||||
|
|
||||||
func genHandler(dir, rootPkg string, cfg *config.Config, group spec.Group, route spec.Route) error {
|
func genHandler(dir, rootPkg, projectPkg string, cfg *config.Config, group spec.Group, route spec.Route) error {
|
||||||
handler := getHandlerName(route)
|
handler := getHandlerName(route)
|
||||||
handlerPath := getHandlerFolderPath(group, route)
|
handlerPath := getHandlerFolderPath(group, route)
|
||||||
pkgName := handlerPath[strings.LastIndex(handlerPath, "/")+1:]
|
pkgName := handlerPath[strings.LastIndex(handlerPath, "/")+1:]
|
||||||
@@ -37,9 +38,11 @@ func genHandler(dir, rootPkg string, cfg *config.Config, group spec.Group, route
|
|||||||
}
|
}
|
||||||
|
|
||||||
var builtinTemplate = handlerTemplate
|
var builtinTemplate = handlerTemplate
|
||||||
|
var templateFile = handlerTemplateFile
|
||||||
sse := group.GetAnnotation("sse")
|
sse := group.GetAnnotation("sse")
|
||||||
if sse == "true" {
|
if sse == "true" {
|
||||||
builtinTemplate = sseHandlerTemplate
|
builtinTemplate = sseHandlerTemplate
|
||||||
|
templateFile = sseHandlerTemplateFile
|
||||||
}
|
}
|
||||||
|
|
||||||
return genFile(fileGenConfig{
|
return genFile(fileGenConfig{
|
||||||
@@ -48,7 +51,7 @@ func genHandler(dir, rootPkg string, cfg *config.Config, group spec.Group, route
|
|||||||
filename: filename + ".go",
|
filename: filename + ".go",
|
||||||
templateName: "handlerTemplate",
|
templateName: "handlerTemplate",
|
||||||
category: category,
|
category: category,
|
||||||
templateFile: handlerTemplateFile,
|
templateFile: templateFile,
|
||||||
builtinTemplate: builtinTemplate,
|
builtinTemplate: builtinTemplate,
|
||||||
data: map[string]any{
|
data: map[string]any{
|
||||||
"PkgName": pkgName,
|
"PkgName": pkgName,
|
||||||
@@ -63,14 +66,16 @@ func genHandler(dir, rootPkg string, cfg *config.Config, group spec.Group, route
|
|||||||
"HasRequest": len(route.RequestTypeName()) > 0,
|
"HasRequest": len(route.RequestTypeName()) > 0,
|
||||||
"HasDoc": len(route.JoinedDoc()) > 0,
|
"HasDoc": len(route.JoinedDoc()) > 0,
|
||||||
"Doc": getDoc(route.JoinedDoc()),
|
"Doc": getDoc(route.JoinedDoc()),
|
||||||
|
"projectPkg": projectPkg,
|
||||||
|
"version": version.BuildVersion,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
func genHandlers(dir, rootPkg string, cfg *config.Config, api *spec.ApiSpec) error {
|
func genHandlers(dir, rootPkg, projectPkg string, cfg *config.Config, api *spec.ApiSpec) error {
|
||||||
for _, group := range api.Service.Groups {
|
for _, group := range api.Service.Groups {
|
||||||
for _, route := range group.Routes {
|
for _, route := range group.Routes {
|
||||||
if err := genHandler(dir, rootPkg, cfg, group, route); err != nil {
|
if err := genHandler(dir, rootPkg, projectPkg, cfg, group, route); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ import (
|
|||||||
|
|
||||||
"github.com/zeromicro/go-zero/tools/goctl/api/spec"
|
"github.com/zeromicro/go-zero/tools/goctl/api/spec"
|
||||||
"github.com/zeromicro/go-zero/tools/goctl/config"
|
"github.com/zeromicro/go-zero/tools/goctl/config"
|
||||||
|
"github.com/zeromicro/go-zero/tools/goctl/internal/version"
|
||||||
"github.com/zeromicro/go-zero/tools/goctl/util"
|
"github.com/zeromicro/go-zero/tools/goctl/util"
|
||||||
"github.com/zeromicro/go-zero/tools/goctl/util/format"
|
"github.com/zeromicro/go-zero/tools/goctl/util/format"
|
||||||
"github.com/zeromicro/go-zero/tools/goctl/util/pathx"
|
"github.com/zeromicro/go-zero/tools/goctl/util/pathx"
|
||||||
@@ -15,7 +16,7 @@ import (
|
|||||||
//go:embed handler_test.tpl
|
//go:embed handler_test.tpl
|
||||||
var handlerTestTemplate string
|
var handlerTestTemplate string
|
||||||
|
|
||||||
func genHandlerTest(dir, rootPkg string, cfg *config.Config, group spec.Group, route spec.Route) error {
|
func genHandlerTest(dir, rootPkg, projectPkg string, cfg *config.Config, group spec.Group, route spec.Route) error {
|
||||||
handler := getHandlerName(route)
|
handler := getHandlerName(route)
|
||||||
handlerPath := getHandlerFolderPath(group, route)
|
handlerPath := getHandlerFolderPath(group, route)
|
||||||
pkgName := handlerPath[strings.LastIndex(handlerPath, "/")+1:]
|
pkgName := handlerPath[strings.LastIndex(handlerPath, "/")+1:]
|
||||||
@@ -50,14 +51,16 @@ func genHandlerTest(dir, rootPkg string, cfg *config.Config, group spec.Group, r
|
|||||||
"HasRequest": len(route.RequestTypeName()) > 0,
|
"HasRequest": len(route.RequestTypeName()) > 0,
|
||||||
"HasDoc": len(route.JoinedDoc()) > 0,
|
"HasDoc": len(route.JoinedDoc()) > 0,
|
||||||
"Doc": getDoc(route.JoinedDoc()),
|
"Doc": getDoc(route.JoinedDoc()),
|
||||||
|
"projectPkg": projectPkg,
|
||||||
|
"version": version.BuildVersion,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
func genHandlersTest(dir, rootPkg string, cfg *config.Config, api *spec.ApiSpec) error {
|
func genHandlersTest(dir, rootPkg, projectPkg string, cfg *config.Config, api *spec.ApiSpec) error {
|
||||||
for _, group := range api.Service.Groups {
|
for _, group := range api.Service.Groups {
|
||||||
for _, route := range group.Routes {
|
for _, route := range group.Routes {
|
||||||
if err := genHandlerTest(dir, rootPkg, cfg, group, route); err != nil {
|
if err := genHandlerTest(dir, rootPkg, projectPkg, cfg, group, route); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
42
tools/goctl/api/gogen/genintegrationtest.go
Normal file
42
tools/goctl/api/gogen/genintegrationtest.go
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
package gogen
|
||||||
|
|
||||||
|
import (
|
||||||
|
_ "embed"
|
||||||
|
|
||||||
|
"github.com/zeromicro/go-zero/tools/goctl/api/spec"
|
||||||
|
"github.com/zeromicro/go-zero/tools/goctl/config"
|
||||||
|
"github.com/zeromicro/go-zero/tools/goctl/internal/version"
|
||||||
|
"github.com/zeromicro/go-zero/tools/goctl/util/format"
|
||||||
|
)
|
||||||
|
|
||||||
|
//go:embed integration_test.tpl
|
||||||
|
var integrationTestTemplate string
|
||||||
|
|
||||||
|
func genIntegrationTest(dir, rootPkg, projectPkg string, cfg *config.Config, api *spec.ApiSpec) error {
|
||||||
|
serviceName := api.Service.Name
|
||||||
|
if len(serviceName) == 0 {
|
||||||
|
serviceName = "server"
|
||||||
|
}
|
||||||
|
|
||||||
|
filename, err := format.FileNamingFormat(cfg.NamingFormat, serviceName)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
return genFile(fileGenConfig{
|
||||||
|
dir: dir,
|
||||||
|
subdir: "",
|
||||||
|
filename: filename + "_test.go",
|
||||||
|
templateName: "integrationTestTemplate",
|
||||||
|
category: category,
|
||||||
|
templateFile: integrationTestTemplateFile,
|
||||||
|
builtinTemplate: integrationTestTemplate,
|
||||||
|
data: map[string]any{
|
||||||
|
"projectPkg": projectPkg,
|
||||||
|
"serviceName": serviceName,
|
||||||
|
"version": version.BuildVersion,
|
||||||
|
"hasRoutes": len(api.Service.Routes()) > 0,
|
||||||
|
"routes": api.Service.Routes(),
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
@@ -10,6 +10,7 @@ import (
|
|||||||
"github.com/zeromicro/go-zero/tools/goctl/api/parser/g4/gen/api"
|
"github.com/zeromicro/go-zero/tools/goctl/api/parser/g4/gen/api"
|
||||||
"github.com/zeromicro/go-zero/tools/goctl/api/spec"
|
"github.com/zeromicro/go-zero/tools/goctl/api/spec"
|
||||||
"github.com/zeromicro/go-zero/tools/goctl/config"
|
"github.com/zeromicro/go-zero/tools/goctl/config"
|
||||||
|
"github.com/zeromicro/go-zero/tools/goctl/internal/version"
|
||||||
"github.com/zeromicro/go-zero/tools/goctl/util/format"
|
"github.com/zeromicro/go-zero/tools/goctl/util/format"
|
||||||
"github.com/zeromicro/go-zero/tools/goctl/util/pathx"
|
"github.com/zeromicro/go-zero/tools/goctl/util/pathx"
|
||||||
"github.com/zeromicro/go-zero/tools/goctl/vars"
|
"github.com/zeromicro/go-zero/tools/goctl/vars"
|
||||||
@@ -23,10 +24,10 @@ var (
|
|||||||
sseLogicTemplate string
|
sseLogicTemplate string
|
||||||
)
|
)
|
||||||
|
|
||||||
func genLogic(dir, rootPkg string, cfg *config.Config, api *spec.ApiSpec) error {
|
func genLogic(dir, rootPkg, projectPkg string, cfg *config.Config, api *spec.ApiSpec) error {
|
||||||
for _, g := range api.Service.Groups {
|
for _, g := range api.Service.Groups {
|
||||||
for _, r := range g.Routes {
|
for _, r := range g.Routes {
|
||||||
err := genLogicByRoute(dir, rootPkg, cfg, g, r)
|
err := genLogicByRoute(dir, rootPkg, projectPkg, cfg, g, r)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
@@ -35,7 +36,7 @@ func genLogic(dir, rootPkg string, cfg *config.Config, api *spec.ApiSpec) error
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func genLogicByRoute(dir, rootPkg string, cfg *config.Config, group spec.Group, route spec.Route) error {
|
func genLogicByRoute(dir, rootPkg, projectPkg string, cfg *config.Config, group spec.Group, route spec.Route) error {
|
||||||
logic := getLogicName(route)
|
logic := getLogicName(route)
|
||||||
goFile, err := format.FileNamingFormat(cfg.NamingFormat, logic)
|
goFile, err := format.FileNamingFormat(cfg.NamingFormat, logic)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@@ -60,9 +61,11 @@ func genLogicByRoute(dir, rootPkg string, cfg *config.Config, group spec.Group,
|
|||||||
|
|
||||||
subDir := getLogicFolderPath(group, route)
|
subDir := getLogicFolderPath(group, route)
|
||||||
builtinTemplate := logicTemplate
|
builtinTemplate := logicTemplate
|
||||||
|
templateFile := logicTemplateFile
|
||||||
sse := group.GetAnnotation("sse")
|
sse := group.GetAnnotation("sse")
|
||||||
if sse == "true" {
|
if sse == "true" {
|
||||||
builtinTemplate = sseLogicTemplate
|
builtinTemplate = sseLogicTemplate
|
||||||
|
templateFile = sseLogicTemplateFile
|
||||||
responseString = "error"
|
responseString = "error"
|
||||||
returnString = "return nil"
|
returnString = "return nil"
|
||||||
resp := responseGoTypeName(route, typesPacket)
|
resp := responseGoTypeName(route, typesPacket)
|
||||||
@@ -79,7 +82,7 @@ func genLogicByRoute(dir, rootPkg string, cfg *config.Config, group spec.Group,
|
|||||||
filename: goFile + ".go",
|
filename: goFile + ".go",
|
||||||
templateName: "logicTemplate",
|
templateName: "logicTemplate",
|
||||||
category: category,
|
category: category,
|
||||||
templateFile: logicTemplateFile,
|
templateFile: templateFile,
|
||||||
builtinTemplate: builtinTemplate,
|
builtinTemplate: builtinTemplate,
|
||||||
data: map[string]any{
|
data: map[string]any{
|
||||||
"pkgName": subDir[strings.LastIndex(subDir, "/")+1:],
|
"pkgName": subDir[strings.LastIndex(subDir, "/")+1:],
|
||||||
@@ -91,6 +94,8 @@ func genLogicByRoute(dir, rootPkg string, cfg *config.Config, group spec.Group,
|
|||||||
"request": requestString,
|
"request": requestString,
|
||||||
"hasDoc": len(route.JoinedDoc()) > 0,
|
"hasDoc": len(route.JoinedDoc()) > 0,
|
||||||
"doc": getDoc(route.JoinedDoc()),
|
"doc": getDoc(route.JoinedDoc()),
|
||||||
|
"projectPkg": projectPkg,
|
||||||
|
"version": version.BuildVersion,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ import (
|
|||||||
|
|
||||||
"github.com/zeromicro/go-zero/tools/goctl/api/spec"
|
"github.com/zeromicro/go-zero/tools/goctl/api/spec"
|
||||||
"github.com/zeromicro/go-zero/tools/goctl/config"
|
"github.com/zeromicro/go-zero/tools/goctl/config"
|
||||||
|
"github.com/zeromicro/go-zero/tools/goctl/internal/version"
|
||||||
"github.com/zeromicro/go-zero/tools/goctl/util/format"
|
"github.com/zeromicro/go-zero/tools/goctl/util/format"
|
||||||
"github.com/zeromicro/go-zero/tools/goctl/util/pathx"
|
"github.com/zeromicro/go-zero/tools/goctl/util/pathx"
|
||||||
)
|
)
|
||||||
@@ -14,10 +15,10 @@ import (
|
|||||||
//go:embed logic_test.tpl
|
//go:embed logic_test.tpl
|
||||||
var logicTestTemplate string
|
var logicTestTemplate string
|
||||||
|
|
||||||
func genLogicTest(dir, rootPkg string, cfg *config.Config, api *spec.ApiSpec) error {
|
func genLogicTest(dir, rootPkg, projectPkg string, cfg *config.Config, api *spec.ApiSpec) error {
|
||||||
for _, g := range api.Service.Groups {
|
for _, g := range api.Service.Groups {
|
||||||
for _, r := range g.Routes {
|
for _, r := range g.Routes {
|
||||||
err := genLogicTestByRoute(dir, rootPkg, cfg, g, r)
|
err := genLogicTestByRoute(dir, rootPkg, projectPkg, cfg, g, r)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
@@ -26,7 +27,7 @@ func genLogicTest(dir, rootPkg string, cfg *config.Config, api *spec.ApiSpec) er
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func genLogicTestByRoute(dir, rootPkg string, cfg *config.Config, group spec.Group, route spec.Route) error {
|
func genLogicTestByRoute(dir, rootPkg, projectPkg string, cfg *config.Config, group spec.Group, route spec.Route) error {
|
||||||
logic := getLogicName(route)
|
logic := getLogicName(route)
|
||||||
goFile, err := format.FileNamingFormat(cfg.NamingFormat, logic)
|
goFile, err := format.FileNamingFormat(cfg.NamingFormat, logic)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@@ -73,6 +74,8 @@ func genLogicTestByRoute(dir, rootPkg string, cfg *config.Config, group spec.Gro
|
|||||||
"requestType": requestType,
|
"requestType": requestType,
|
||||||
"hasDoc": len(route.JoinedDoc()) > 0,
|
"hasDoc": len(route.JoinedDoc()) > 0,
|
||||||
"doc": getDoc(route.JoinedDoc()),
|
"doc": getDoc(route.JoinedDoc()),
|
||||||
|
"projectPkg": projectPkg,
|
||||||
|
"version": version.BuildVersion,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ import (
|
|||||||
|
|
||||||
"github.com/zeromicro/go-zero/tools/goctl/api/spec"
|
"github.com/zeromicro/go-zero/tools/goctl/api/spec"
|
||||||
"github.com/zeromicro/go-zero/tools/goctl/config"
|
"github.com/zeromicro/go-zero/tools/goctl/config"
|
||||||
|
"github.com/zeromicro/go-zero/tools/goctl/internal/version"
|
||||||
"github.com/zeromicro/go-zero/tools/goctl/util/format"
|
"github.com/zeromicro/go-zero/tools/goctl/util/format"
|
||||||
"github.com/zeromicro/go-zero/tools/goctl/util/pathx"
|
"github.com/zeromicro/go-zero/tools/goctl/util/pathx"
|
||||||
"github.com/zeromicro/go-zero/tools/goctl/vars"
|
"github.com/zeromicro/go-zero/tools/goctl/vars"
|
||||||
@@ -15,7 +16,7 @@ import (
|
|||||||
//go:embed main.tpl
|
//go:embed main.tpl
|
||||||
var mainTemplate string
|
var mainTemplate string
|
||||||
|
|
||||||
func genMain(dir, rootPkg string, cfg *config.Config, api *spec.ApiSpec) error {
|
func genMain(dir, rootPkg, projectPkg string, cfg *config.Config, api *spec.ApiSpec) error {
|
||||||
name := strings.ToLower(api.Service.Name)
|
name := strings.ToLower(api.Service.Name)
|
||||||
filename, err := format.FileNamingFormat(cfg.NamingFormat, name)
|
filename, err := format.FileNamingFormat(cfg.NamingFormat, name)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@@ -38,6 +39,8 @@ func genMain(dir, rootPkg string, cfg *config.Config, api *spec.ApiSpec) error {
|
|||||||
data: map[string]string{
|
data: map[string]string{
|
||||||
"importPackages": genMainImports(rootPkg),
|
"importPackages": genMainImports(rootPkg),
|
||||||
"serviceName": configName,
|
"serviceName": configName,
|
||||||
|
"projectPkg": projectPkg,
|
||||||
|
"version": version.BuildVersion,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ import (
|
|||||||
|
|
||||||
"github.com/zeromicro/go-zero/tools/goctl/api/spec"
|
"github.com/zeromicro/go-zero/tools/goctl/api/spec"
|
||||||
"github.com/zeromicro/go-zero/tools/goctl/config"
|
"github.com/zeromicro/go-zero/tools/goctl/config"
|
||||||
|
"github.com/zeromicro/go-zero/tools/goctl/internal/version"
|
||||||
"github.com/zeromicro/go-zero/tools/goctl/util/format"
|
"github.com/zeromicro/go-zero/tools/goctl/util/format"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -31,7 +32,8 @@ func genMiddleware(dir string, cfg *config.Config, api *spec.ApiSpec) error {
|
|||||||
templateFile: middlewareImplementCodeFile,
|
templateFile: middlewareImplementCodeFile,
|
||||||
builtinTemplate: middlewareImplementCode,
|
builtinTemplate: middlewareImplementCode,
|
||||||
data: map[string]string{
|
data: map[string]string{
|
||||||
"name": strings.Title(name),
|
"name": strings.Title(name),
|
||||||
|
"version": version.BuildVersion,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|||||||
@@ -79,7 +79,7 @@ type (
|
|||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
func genRoutes(dir, rootPkg string, cfg *config.Config, api *spec.ApiSpec) error {
|
func genRoutes(dir, rootPkg, projectPkg string, cfg *config.Config, api *spec.ApiSpec) error {
|
||||||
var builder strings.Builder
|
var builder strings.Builder
|
||||||
groups, err := getRoutes(api)
|
groups, err := getRoutes(api)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@@ -211,6 +211,7 @@ rest.WithPrefix("%s"),`, g.prefix)
|
|||||||
"importPackages": genRouteImports(rootPkg, api),
|
"importPackages": genRouteImports(rootPkg, api),
|
||||||
"routesAdditions": strings.TrimSpace(builder.String()),
|
"routesAdditions": strings.TrimSpace(builder.String()),
|
||||||
"version": version.BuildVersion,
|
"version": version.BuildVersion,
|
||||||
|
"projectPkg": projectPkg,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@@ -226,8 +227,8 @@ func formatDuration(duration time.Duration) string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func genRouteImports(parentPkg string, api *spec.ApiSpec) string {
|
func genRouteImports(parentPkg string, api *spec.ApiSpec) string {
|
||||||
importSet := collection.NewSet()
|
importSet := collection.NewSet[string]()
|
||||||
importSet.AddStr(fmt.Sprintf("\"%s\"", pathx.JoinPackages(parentPkg, contextDir)))
|
importSet.Add(fmt.Sprintf("\"%s\"", pathx.JoinPackages(parentPkg, contextDir)))
|
||||||
for _, group := range api.Service.Groups {
|
for _, group := range api.Service.Groups {
|
||||||
for _, route := range group.Routes {
|
for _, route := range group.Routes {
|
||||||
folder := route.GetAnnotation(groupProperty)
|
folder := route.GetAnnotation(groupProperty)
|
||||||
@@ -237,11 +238,11 @@ func genRouteImports(parentPkg string, api *spec.ApiSpec) string {
|
|||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
importSet.AddStr(fmt.Sprintf("%s \"%s\"", toPrefix(folder),
|
importSet.Add(fmt.Sprintf("%s \"%s\"", toPrefix(folder),
|
||||||
pathx.JoinPackages(parentPkg, handlerDir, folder)))
|
pathx.JoinPackages(parentPkg, handlerDir, folder)))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
imports := importSet.KeysStr()
|
imports := importSet.Keys()
|
||||||
sort.Strings(imports)
|
sort.Strings(imports)
|
||||||
projectSection := strings.Join(imports, "\n\t")
|
projectSection := strings.Join(imports, "\n\t")
|
||||||
depSection := fmt.Sprintf("\"%s/rest\"", vars.ProjectOpenSourceURL)
|
depSection := fmt.Sprintf("\"%s/rest\"", vars.ProjectOpenSourceURL)
|
||||||
|
|||||||
153
tools/goctl/api/gogen/gensse_test.go
Normal file
153
tools/goctl/api/gogen/gensse_test.go
Normal file
@@ -0,0 +1,153 @@
|
|||||||
|
package gogen
|
||||||
|
|
||||||
|
import (
|
||||||
|
"os"
|
||||||
|
"path/filepath"
|
||||||
|
"strings"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestSSEGeneration(t *testing.T) {
|
||||||
|
// Create a temporary directory for test
|
||||||
|
dir := t.TempDir()
|
||||||
|
|
||||||
|
// Create a test API file with SSE annotation
|
||||||
|
apiContent := `syntax = "v1"
|
||||||
|
|
||||||
|
type SseReq {
|
||||||
|
Message string ` + "`json:\"message\"`" + `
|
||||||
|
}
|
||||||
|
|
||||||
|
type SseResp {
|
||||||
|
Data string ` + "`json:\"data\"`" + `
|
||||||
|
}
|
||||||
|
|
||||||
|
@server (
|
||||||
|
sse: true
|
||||||
|
)
|
||||||
|
service Test {
|
||||||
|
@handler Sse
|
||||||
|
get /sse (SseReq) returns (SseResp)
|
||||||
|
}
|
||||||
|
`
|
||||||
|
apiFile := filepath.Join(dir, "test.api")
|
||||||
|
err := os.WriteFile(apiFile, []byte(apiContent), 0644)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
|
||||||
|
// Generate code
|
||||||
|
err = DoGenProject(apiFile, dir, "gozero", false)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
|
||||||
|
// Read generated handler file
|
||||||
|
handlerPath := filepath.Join(dir, "internal/handler/ssehandler.go")
|
||||||
|
handlerContent, err := os.ReadFile(handlerPath)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
|
||||||
|
// Read generated logic file
|
||||||
|
logicPath := filepath.Join(dir, "internal/logic/sselogic.go")
|
||||||
|
logicContent, err := os.ReadFile(logicPath)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
|
||||||
|
handlerStr := string(handlerContent)
|
||||||
|
logicStr := string(logicContent)
|
||||||
|
|
||||||
|
// Verify SSE-specific patterns in handler
|
||||||
|
// Handler should call: err := l.Sse(&req, client)
|
||||||
|
assert.Contains(t, handlerStr, "err := l.Sse(&req, client)",
|
||||||
|
"Handler should call logic with client channel parameter")
|
||||||
|
|
||||||
|
// Handler should NOT have the regular pattern: resp, err := l.Sse(&req)
|
||||||
|
assert.NotContains(t, handlerStr, "resp, err := l.Sse(&req)",
|
||||||
|
"Handler should not use regular pattern with resp return")
|
||||||
|
|
||||||
|
// Handler should use threading.GoSafeCtx
|
||||||
|
assert.Contains(t, handlerStr, "threading.GoSafeCtx",
|
||||||
|
"Handler should use threading.GoSafeCtx for SSE")
|
||||||
|
|
||||||
|
// Handler should create client channel
|
||||||
|
assert.Contains(t, handlerStr, "client := make(chan",
|
||||||
|
"Handler should create client channel")
|
||||||
|
|
||||||
|
// Verify SSE-specific patterns in logic
|
||||||
|
// Logic should have signature: Sse(req *types.SseReq, client chan<- *types.SseResp) error
|
||||||
|
assert.Contains(t, logicStr, "func (l *SseLogic) Sse(req *types.SseReq, client chan<- *types.SseResp) error",
|
||||||
|
"Logic should have SSE signature with client channel parameter")
|
||||||
|
|
||||||
|
// Logic should NOT have regular signature: Sse(req *types.SseReq) (resp *types.SseResp, err error)
|
||||||
|
assert.NotContains(t, logicStr, "(resp *types.SseResp, err error)",
|
||||||
|
"Logic should not have regular signature with resp return")
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestNonSSEGeneration(t *testing.T) {
|
||||||
|
// Create a temporary directory for test
|
||||||
|
dir := t.TempDir()
|
||||||
|
|
||||||
|
// Create a test API file WITHOUT SSE annotation
|
||||||
|
apiContent := `syntax = "v1"
|
||||||
|
|
||||||
|
type SseReq {
|
||||||
|
Message string ` + "`json:\"message\"`" + `
|
||||||
|
}
|
||||||
|
|
||||||
|
type SseResp {
|
||||||
|
Data string ` + "`json:\"data\"`" + `
|
||||||
|
}
|
||||||
|
|
||||||
|
service Test {
|
||||||
|
@handler Sse
|
||||||
|
get /sse (SseReq) returns (SseResp)
|
||||||
|
}
|
||||||
|
`
|
||||||
|
apiFile := filepath.Join(dir, "test.api")
|
||||||
|
err := os.WriteFile(apiFile, []byte(apiContent), 0644)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
|
||||||
|
// Generate code
|
||||||
|
err = DoGenProject(apiFile, dir, "gozero", false)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
|
||||||
|
// Read generated handler file
|
||||||
|
handlerPath := filepath.Join(dir, "internal/handler/ssehandler.go")
|
||||||
|
handlerContent, err := os.ReadFile(handlerPath)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
|
||||||
|
// Read generated logic file
|
||||||
|
logicPath := filepath.Join(dir, "internal/logic/sselogic.go")
|
||||||
|
logicContent, err := os.ReadFile(logicPath)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
|
||||||
|
handlerStr := string(handlerContent)
|
||||||
|
logicStr := string(logicContent)
|
||||||
|
|
||||||
|
// Verify regular (non-SSE) patterns in handler
|
||||||
|
// Handler should call: resp, err := l.Sse(&req)
|
||||||
|
assert.Contains(t, handlerStr, "resp, err := l.Sse(&req)",
|
||||||
|
"Handler should use regular pattern with resp return")
|
||||||
|
|
||||||
|
// Handler should NOT have SSE pattern: err := l.Sse(&req, client)
|
||||||
|
assert.NotContains(t, handlerStr, "err := l.Sse(&req, client)",
|
||||||
|
"Handler should not use SSE pattern")
|
||||||
|
|
||||||
|
// Handler should NOT use threading.GoSafeCtx
|
||||||
|
assert.NotContains(t, handlerStr, "threading.GoSafeCtx",
|
||||||
|
"Handler should not use threading.GoSafeCtx for regular routes")
|
||||||
|
|
||||||
|
// Verify regular (non-SSE) patterns in logic
|
||||||
|
// Logic should have signature: Sse(req *types.SseReq) (resp *types.SseResp, err error)
|
||||||
|
assert.Contains(t, logicStr, "(resp *types.SseResp, err error)",
|
||||||
|
"Logic should have regular signature with resp return")
|
||||||
|
|
||||||
|
// Logic should NOT have SSE signature with client parameter
|
||||||
|
linesToCheck := strings.Split(logicStr, "\n")
|
||||||
|
hasSSESignature := false
|
||||||
|
for _, line := range linesToCheck {
|
||||||
|
if strings.Contains(line, "func (l *SseLogic) Sse") && strings.Contains(line, "client chan<-") {
|
||||||
|
hasSSESignature = true
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
assert.False(t, hasSSESignature,
|
||||||
|
"Logic should not have SSE signature with client channel parameter")
|
||||||
|
}
|
||||||
@@ -7,6 +7,7 @@ import (
|
|||||||
|
|
||||||
"github.com/zeromicro/go-zero/tools/goctl/api/spec"
|
"github.com/zeromicro/go-zero/tools/goctl/api/spec"
|
||||||
"github.com/zeromicro/go-zero/tools/goctl/config"
|
"github.com/zeromicro/go-zero/tools/goctl/config"
|
||||||
|
"github.com/zeromicro/go-zero/tools/goctl/internal/version"
|
||||||
"github.com/zeromicro/go-zero/tools/goctl/util/format"
|
"github.com/zeromicro/go-zero/tools/goctl/util/format"
|
||||||
"github.com/zeromicro/go-zero/tools/goctl/util/pathx"
|
"github.com/zeromicro/go-zero/tools/goctl/util/pathx"
|
||||||
"github.com/zeromicro/go-zero/tools/goctl/vars"
|
"github.com/zeromicro/go-zero/tools/goctl/vars"
|
||||||
@@ -17,7 +18,7 @@ const contextFilename = "service_context"
|
|||||||
//go:embed svc.tpl
|
//go:embed svc.tpl
|
||||||
var contextTemplate string
|
var contextTemplate string
|
||||||
|
|
||||||
func genServiceContext(dir, rootPkg string, cfg *config.Config, api *spec.ApiSpec) error {
|
func genServiceContext(dir, rootPkg, projectPkg string, cfg *config.Config, api *spec.ApiSpec) error {
|
||||||
filename, err := format.FileNamingFormat(cfg.NamingFormat, contextFilename)
|
filename, err := format.FileNamingFormat(cfg.NamingFormat, contextFilename)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
@@ -53,6 +54,8 @@ func genServiceContext(dir, rootPkg string, cfg *config.Config, api *spec.ApiSpe
|
|||||||
"config": "config.Config",
|
"config": "config.Config",
|
||||||
"middleware": middlewareStr,
|
"middleware": middlewareStr,
|
||||||
"middlewareAssignment": middlewareAssignment,
|
"middlewareAssignment": middlewareAssignment,
|
||||||
|
"projectPkg": projectPkg,
|
||||||
|
"version": version.BuildVersion,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
34
tools/goctl/api/gogen/gensvctest.go
Normal file
34
tools/goctl/api/gogen/gensvctest.go
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
package gogen
|
||||||
|
|
||||||
|
import (
|
||||||
|
_ "embed"
|
||||||
|
|
||||||
|
"github.com/zeromicro/go-zero/tools/goctl/api/spec"
|
||||||
|
"github.com/zeromicro/go-zero/tools/goctl/config"
|
||||||
|
"github.com/zeromicro/go-zero/tools/goctl/internal/version"
|
||||||
|
"github.com/zeromicro/go-zero/tools/goctl/util/format"
|
||||||
|
)
|
||||||
|
|
||||||
|
//go:embed svc_test.tpl
|
||||||
|
var svcTestTemplate string
|
||||||
|
|
||||||
|
func genServiceContextTest(dir, rootPkg, projectPkg string, cfg *config.Config, api *spec.ApiSpec) error {
|
||||||
|
filename, err := format.FileNamingFormat(cfg.NamingFormat, contextFilename)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
return genFile(fileGenConfig{
|
||||||
|
dir: dir,
|
||||||
|
subdir: contextDir,
|
||||||
|
filename: filename + "_test.go",
|
||||||
|
templateName: "svcTestTemplate",
|
||||||
|
category: category,
|
||||||
|
templateFile: svcTestTemplateFile,
|
||||||
|
builtinTemplate: svcTestTemplate,
|
||||||
|
data: map[string]any{
|
||||||
|
"projectPkg": projectPkg,
|
||||||
|
"version": version.BuildVersion,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
@@ -59,7 +59,7 @@ func getTypeName(tp spec.Type) string {
|
|||||||
|
|
||||||
func genTypesWithGroup(dir string, cfg *config.Config, api *spec.ApiSpec) error {
|
func genTypesWithGroup(dir string, cfg *config.Config, api *spec.ApiSpec) error {
|
||||||
groupTypes := make(map[string]map[string]spec.Type)
|
groupTypes := make(map[string]map[string]spec.Type)
|
||||||
typesBelongToFiles := make(map[string]*collection.Set)
|
typesBelongToFiles := make(map[string]*collection.Set[string])
|
||||||
|
|
||||||
for _, v := range api.Service.Groups {
|
for _, v := range api.Service.Groups {
|
||||||
group := v.GetAnnotation(groupProperty)
|
group := v.GetAnnotation(groupProperty)
|
||||||
@@ -75,37 +75,37 @@ func genTypesWithGroup(dir string, cfg *config.Config, api *spec.ApiSpec) error
|
|||||||
responseTypeName := getTypeName(v.ResponseType)
|
responseTypeName := getTypeName(v.ResponseType)
|
||||||
requestTypeFileSet, ok := typesBelongToFiles[requestTypeName]
|
requestTypeFileSet, ok := typesBelongToFiles[requestTypeName]
|
||||||
if !ok {
|
if !ok {
|
||||||
requestTypeFileSet = collection.NewSet()
|
requestTypeFileSet = collection.NewSet[string]()
|
||||||
}
|
}
|
||||||
if len(requestTypeName) > 0 {
|
if len(requestTypeName) > 0 {
|
||||||
requestTypeFileSet.AddStr(group)
|
requestTypeFileSet.Add(group)
|
||||||
typesBelongToFiles[requestTypeName] = requestTypeFileSet
|
typesBelongToFiles[requestTypeName] = requestTypeFileSet
|
||||||
}
|
}
|
||||||
|
|
||||||
responseTypeFileSet, ok := typesBelongToFiles[responseTypeName]
|
responseTypeFileSet, ok := typesBelongToFiles[responseTypeName]
|
||||||
if !ok {
|
if !ok {
|
||||||
responseTypeFileSet = collection.NewSet()
|
responseTypeFileSet = collection.NewSet[string]()
|
||||||
}
|
}
|
||||||
if len(responseTypeName) > 0 {
|
if len(responseTypeName) > 0 {
|
||||||
responseTypeFileSet.AddStr(group)
|
responseTypeFileSet.Add(group)
|
||||||
typesBelongToFiles[responseTypeName] = responseTypeFileSet
|
typesBelongToFiles[responseTypeName] = responseTypeFileSet
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
typesInOneFile := make(map[string]*collection.Set)
|
typesInOneFile := make(map[string]*collection.Set[string])
|
||||||
for typeName, fileSet := range typesBelongToFiles {
|
for typeName, fileSet := range typesBelongToFiles {
|
||||||
count := fileSet.Count()
|
count := fileSet.Count()
|
||||||
switch {
|
switch {
|
||||||
case count == 0: // it means there has no structure type or no request/response body
|
case count == 0: // it means there has no structure type or no request/response body
|
||||||
continue
|
continue
|
||||||
case count == 1: // it means a structure type used in only one group.
|
case count == 1: // it means a structure type used in only one group.
|
||||||
groupName := fileSet.KeysStr()[0]
|
groupName := fileSet.Keys()[0]
|
||||||
typeSet, ok := typesInOneFile[groupName]
|
typeSet, ok := typesInOneFile[groupName]
|
||||||
if !ok {
|
if !ok {
|
||||||
typeSet = collection.NewSet()
|
typeSet = collection.NewSet[string]()
|
||||||
}
|
}
|
||||||
typeSet.AddStr(typeName)
|
typeSet.Add(typeName)
|
||||||
typesInOneFile[groupName] = typeSet
|
typesInOneFile[groupName] = typeSet
|
||||||
default: // it means this type is used in multiple groups.
|
default: // it means this type is used in multiple groups.
|
||||||
continue
|
continue
|
||||||
@@ -133,7 +133,7 @@ func genTypesWithGroup(dir string, cfg *config.Config, api *spec.ApiSpec) error
|
|||||||
}
|
}
|
||||||
|
|
||||||
if typeCount == 1 { // belong to one group
|
if typeCount == 1 { // belong to one group
|
||||||
groupName := groupSet.KeysStr()[0]
|
groupName := groupSet.Keys()[0]
|
||||||
types, ok := groupTypes[groupName]
|
types, ok := groupTypes[groupName]
|
||||||
if !ok {
|
if !ok {
|
||||||
types = make(map[string]spec.Type)
|
types = make(map[string]spec.Type)
|
||||||
|
|||||||
@@ -1,3 +1,6 @@
|
|||||||
|
// Code scaffolded by goctl. Safe to edit.
|
||||||
|
// goctl {{.version}}
|
||||||
|
|
||||||
package {{.PkgName}}
|
package {{.PkgName}}
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|||||||
@@ -1,3 +1,6 @@
|
|||||||
|
// Code scaffolded by goctl. Safe to edit.
|
||||||
|
// goctl {{.version}}
|
||||||
|
|
||||||
package {{.PkgName}}
|
package {{.PkgName}}
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|||||||
120
tools/goctl/api/gogen/integration_test.tpl
Normal file
120
tools/goctl/api/gogen/integration_test.tpl
Normal file
@@ -0,0 +1,120 @@
|
|||||||
|
// Code scaffolded by goctl. Safe to edit.
|
||||||
|
// goctl {{.version}}
|
||||||
|
|
||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"net/http"
|
||||||
|
"net/http/httptest"
|
||||||
|
"testing"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"{{.projectPkg}}/internal/config"
|
||||||
|
"{{.projectPkg}}/internal/handler"
|
||||||
|
"{{.projectPkg}}/internal/svc"
|
||||||
|
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
|
"github.com/stretchr/testify/require"
|
||||||
|
"github.com/zeromicro/go-zero/rest"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestMain(m *testing.M) {
|
||||||
|
// TODO: Add setup/teardown logic here if needed
|
||||||
|
m.Run()
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestServerIntegration(t *testing.T) {
|
||||||
|
// Create test server
|
||||||
|
c := config.Config{
|
||||||
|
RestConf: rest.RestConf{
|
||||||
|
Host: "127.0.0.1",
|
||||||
|
Port: 0, // Use random available port
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
server := rest.MustNewServer(c.RestConf)
|
||||||
|
defer server.Stop()
|
||||||
|
|
||||||
|
ctx := svc.NewServiceContext(c)
|
||||||
|
handler.RegisterHandlers(server, ctx)
|
||||||
|
|
||||||
|
// Start server in background
|
||||||
|
go func() {
|
||||||
|
server.Start()
|
||||||
|
}()
|
||||||
|
|
||||||
|
// Wait for server to start
|
||||||
|
time.Sleep(100 * time.Millisecond)
|
||||||
|
|
||||||
|
tests := []struct {
|
||||||
|
name string
|
||||||
|
method string
|
||||||
|
path string
|
||||||
|
body string
|
||||||
|
expectedStatus int
|
||||||
|
setup func()
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
name: "health check",
|
||||||
|
method: "GET",
|
||||||
|
path: "/health",
|
||||||
|
expectedStatus: http.StatusNotFound, // Adjust based on actual routes
|
||||||
|
setup: func() {},
|
||||||
|
},
|
||||||
|
{{if .hasRoutes}}{{range .routes}}{
|
||||||
|
name: "{{.Method}} {{.Path}}",
|
||||||
|
method: "{{.Method}}",
|
||||||
|
path: "{{.Path}}",
|
||||||
|
expectedStatus: http.StatusOK, // TODO: Adjust expected status
|
||||||
|
setup: func() {
|
||||||
|
// TODO: Add setup logic for this endpoint
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{{end}}{{end}}{
|
||||||
|
name: "not found route",
|
||||||
|
method: "GET",
|
||||||
|
path: "/nonexistent",
|
||||||
|
expectedStatus: http.StatusNotFound,
|
||||||
|
setup: func() {},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, tt := range tests {
|
||||||
|
t.Run(tt.name, func(t *testing.T) {
|
||||||
|
tt.setup()
|
||||||
|
|
||||||
|
req, err := http.NewRequest(tt.method, tt.path, nil)
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
rr := httptest.NewRecorder()
|
||||||
|
server.ServeHTTP(rr, req)
|
||||||
|
|
||||||
|
assert.Equal(t, tt.expectedStatus, rr.Code)
|
||||||
|
|
||||||
|
// TODO: Add response body assertions
|
||||||
|
t.Logf("Response: %s", rr.Body.String())
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestServerLifecycle(t *testing.T) {
|
||||||
|
c := config.Config{
|
||||||
|
RestConf: rest.RestConf{
|
||||||
|
Host: "127.0.0.1",
|
||||||
|
Port: 0,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
server := rest.MustNewServer(c.RestConf)
|
||||||
|
|
||||||
|
// Test server can start and stop without errors
|
||||||
|
ctx := svc.NewServiceContext(c)
|
||||||
|
handler.RegisterHandlers(server, ctx)
|
||||||
|
|
||||||
|
// In a real integration test, you might start the server in a goroutine
|
||||||
|
// and test actual HTTP requests, but for scaffolding we keep it simple
|
||||||
|
server.Stop()
|
||||||
|
|
||||||
|
// TODO: Add more lifecycle tests as needed
|
||||||
|
assert.True(t, true, "Server lifecycle test passed")
|
||||||
|
}
|
||||||
@@ -1,3 +1,6 @@
|
|||||||
|
// Code scaffolded by goctl. Safe to edit.
|
||||||
|
// goctl {{.version}}
|
||||||
|
|
||||||
package {{.pkgName}}
|
package {{.pkgName}}
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|||||||
@@ -1,3 +1,6 @@
|
|||||||
|
// Code scaffolded by goctl. Safe to edit.
|
||||||
|
// goctl {{.version}}
|
||||||
|
|
||||||
package {{.pkgName}}
|
package {{.pkgName}}
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|||||||
@@ -1,3 +1,6 @@
|
|||||||
|
// Code scaffolded by goctl. Safe to edit.
|
||||||
|
// goctl {{.version}}
|
||||||
|
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|||||||
@@ -1,3 +1,6 @@
|
|||||||
|
// Code scaffolded by goctl. Safe to edit.
|
||||||
|
// goctl {{.version}}
|
||||||
|
|
||||||
package middleware
|
package middleware
|
||||||
|
|
||||||
import "net/http"
|
import "net/http"
|
||||||
|
|||||||
@@ -1,3 +1,6 @@
|
|||||||
|
// Code scaffolded by goctl. Safe to edit.
|
||||||
|
// goctl {{.version}}
|
||||||
|
|
||||||
package {{.PkgName}}
|
package {{.PkgName}}
|
||||||
|
|
||||||
import (
|
import (
|
||||||
@@ -27,11 +30,10 @@ func {{.HandlerName}}(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
|||||||
// w.Header().Set("Cache-Control", "no-cache")
|
// w.Header().Set("Cache-Control", "no-cache")
|
||||||
// w.Header().Set("Connection", "keep-alive")
|
// w.Header().Set("Connection", "keep-alive")
|
||||||
client := make(chan {{.ResponseType}}, 16)
|
client := make(chan {{.ResponseType}}, 16)
|
||||||
defer func() {
|
|
||||||
close(client)
|
|
||||||
}()
|
|
||||||
l := {{.LogicName}}.New{{.LogicType}}(r.Context(), svcCtx)
|
l := {{.LogicName}}.New{{.LogicType}}(r.Context(), svcCtx)
|
||||||
threading.GoSafeCtx(r.Context(), func() {
|
threading.GoSafeCtx(r.Context(), func() {
|
||||||
|
defer close(client)
|
||||||
err := l.{{.Call}}({{if .HasRequest}}&req, {{end}}client)
|
err := l.{{.Call}}({{if .HasRequest}}&req, {{end}}client)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
logc.Errorw(r.Context(), "{{.HandlerName}}", logc.Field("error", err))
|
logc.Errorw(r.Context(), "{{.HandlerName}}", logc.Field("error", err))
|
||||||
@@ -41,7 +43,10 @@ func {{.HandlerName}}(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
|||||||
|
|
||||||
for {
|
for {
|
||||||
select {
|
select {
|
||||||
case data := <-client:
|
case data, ok := <-client:
|
||||||
|
if !ok {
|
||||||
|
return
|
||||||
|
}
|
||||||
output, err := json.Marshal(data)
|
output, err := json.Marshal(data)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
logc.Errorw(r.Context(), "{{.HandlerName}}", logc.Field("error", err))
|
logc.Errorw(r.Context(), "{{.HandlerName}}", logc.Field("error", err))
|
||||||
|
|||||||
@@ -1,3 +1,6 @@
|
|||||||
|
// Code scaffolded by goctl. Safe to edit.
|
||||||
|
// goctl {{.version}}
|
||||||
|
|
||||||
package {{.pkgName}}
|
package {{.pkgName}}
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|||||||
@@ -1,3 +1,6 @@
|
|||||||
|
// Code scaffolded by goctl. Safe to edit.
|
||||||
|
// goctl {{.version}}
|
||||||
|
|
||||||
package svc
|
package svc
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|||||||
60
tools/goctl/api/gogen/svc_test.tpl
Normal file
60
tools/goctl/api/gogen/svc_test.tpl
Normal file
@@ -0,0 +1,60 @@
|
|||||||
|
// Code scaffolded by goctl. Safe to edit.
|
||||||
|
// goctl {{.version}}
|
||||||
|
|
||||||
|
package svc
|
||||||
|
|
||||||
|
import (
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"{{.projectPkg}}/internal/config"
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
|
"github.com/stretchr/testify/require"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestNewServiceContext(t *testing.T) {
|
||||||
|
tests := []struct {
|
||||||
|
name string
|
||||||
|
config config.Config
|
||||||
|
setup func() config.Config
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
name: "default config",
|
||||||
|
setup: func() config.Config {
|
||||||
|
return config.Config{}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "valid config",
|
||||||
|
setup: func() config.Config {
|
||||||
|
return config.Config{
|
||||||
|
// TODO: Add valid config values here
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, tt := range tests {
|
||||||
|
t.Run(tt.name, func(t *testing.T) {
|
||||||
|
c := tt.setup()
|
||||||
|
svcCtx := NewServiceContext(c)
|
||||||
|
|
||||||
|
// Basic assertions
|
||||||
|
require.NotNil(t, svcCtx)
|
||||||
|
assert.Equal(t, c, svcCtx.Config)
|
||||||
|
|
||||||
|
// TODO: Add additional assertions for middleware and dependencies
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestServiceContext_Initialization(t *testing.T) {
|
||||||
|
c := config.Config{}
|
||||||
|
svcCtx := NewServiceContext(c)
|
||||||
|
|
||||||
|
// Verify service context is properly initialized
|
||||||
|
assert.NotNil(t, svcCtx)
|
||||||
|
assert.Equal(t, c, svcCtx.Config)
|
||||||
|
|
||||||
|
// TODO: Add tests for middleware initialization if any
|
||||||
|
// TODO: Add tests for external dependencies if any
|
||||||
|
}
|
||||||
@@ -22,6 +22,8 @@ const (
|
|||||||
routesTemplateFile = "routes.tpl"
|
routesTemplateFile = "routes.tpl"
|
||||||
routesAdditionTemplateFile = "route-addition.tpl"
|
routesAdditionTemplateFile = "route-addition.tpl"
|
||||||
typesTemplateFile = "types.tpl"
|
typesTemplateFile = "types.tpl"
|
||||||
|
svcTestTemplateFile = "svc_test.tpl"
|
||||||
|
integrationTestTemplateFile = "integration_test.tpl"
|
||||||
)
|
)
|
||||||
|
|
||||||
var templates = map[string]string{
|
var templates = map[string]string{
|
||||||
@@ -39,6 +41,8 @@ var templates = map[string]string{
|
|||||||
routesTemplateFile: routesTemplate,
|
routesTemplateFile: routesTemplate,
|
||||||
routesAdditionTemplateFile: routesAdditionTemplate,
|
routesAdditionTemplateFile: routesAdditionTemplate,
|
||||||
typesTemplateFile: typesTemplate,
|
typesTemplateFile: typesTemplate,
|
||||||
|
svcTestTemplateFile: svcTestTemplate,
|
||||||
|
integrationTestTemplateFile: integrationTestTemplate,
|
||||||
}
|
}
|
||||||
|
|
||||||
// Category returns the category of the api files.
|
// Category returns the category of the api files.
|
||||||
|
|||||||
@@ -115,29 +115,29 @@ func writeProperty(writer io.Writer, name, tag, comment string, tp spec.Type, in
|
|||||||
}
|
}
|
||||||
|
|
||||||
func getAuths(api *spec.ApiSpec) []string {
|
func getAuths(api *spec.ApiSpec) []string {
|
||||||
authNames := collection.NewSet()
|
authNames := collection.NewSet[string]()
|
||||||
for _, g := range api.Service.Groups {
|
for _, g := range api.Service.Groups {
|
||||||
jwt := g.GetAnnotation("jwt")
|
jwt := g.GetAnnotation("jwt")
|
||||||
if len(jwt) > 0 {
|
if len(jwt) > 0 {
|
||||||
authNames.Add(jwt)
|
authNames.Add(jwt)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return authNames.KeysStr()
|
return authNames.Keys()
|
||||||
}
|
}
|
||||||
|
|
||||||
func getJwtTrans(api *spec.ApiSpec) []string {
|
func getJwtTrans(api *spec.ApiSpec) []string {
|
||||||
jwtTransList := collection.NewSet()
|
jwtTransList := collection.NewSet[string]()
|
||||||
for _, g := range api.Service.Groups {
|
for _, g := range api.Service.Groups {
|
||||||
jt := g.GetAnnotation(jwtTransKey)
|
jt := g.GetAnnotation(jwtTransKey)
|
||||||
if len(jt) > 0 {
|
if len(jt) > 0 {
|
||||||
jwtTransList.Add(jt)
|
jwtTransList.Add(jt)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return jwtTransList.KeysStr()
|
return jwtTransList.Keys()
|
||||||
}
|
}
|
||||||
|
|
||||||
func getMiddleware(api *spec.ApiSpec) []string {
|
func getMiddleware(api *spec.ApiSpec) []string {
|
||||||
result := collection.NewSet()
|
result := collection.NewSet[string]()
|
||||||
for _, g := range api.Service.Groups {
|
for _, g := range api.Service.Groups {
|
||||||
middleware := g.GetAnnotation("middleware")
|
middleware := g.GetAnnotation("middleware")
|
||||||
if len(middleware) > 0 {
|
if len(middleware) > 0 {
|
||||||
@@ -147,7 +147,7 @@ func getMiddleware(api *spec.ApiSpec) []string {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return result.KeysStr()
|
return result.Keys()
|
||||||
}
|
}
|
||||||
|
|
||||||
func responseGoTypeName(r spec.Route, pkg ...string) string {
|
func responseGoTypeName(r spec.Route, pkg ...string) string {
|
||||||
|
|||||||
@@ -27,6 +27,8 @@ var (
|
|||||||
VarStringBranch string
|
VarStringBranch string
|
||||||
// VarStringStyle describes the style of output files.
|
// VarStringStyle describes the style of output files.
|
||||||
VarStringStyle string
|
VarStringStyle string
|
||||||
|
// VarStringModule describes the module name for go.mod.
|
||||||
|
VarStringModule string
|
||||||
)
|
)
|
||||||
|
|
||||||
// CreateServiceCommand fast create service
|
// CreateServiceCommand fast create service
|
||||||
@@ -83,6 +85,6 @@ func CreateServiceCommand(_ *cobra.Command, args []string) error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
err = gogen.DoGenProject(apiFilePath, abs, VarStringStyle, false)
|
err = gogen.DoGenProjectWithModule(apiFilePath, abs, VarStringModule, VarStringStyle, false)
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|||||||
205
tools/goctl/api/new/newservice_test.go
Normal file
205
tools/goctl/api/new/newservice_test.go
Normal file
@@ -0,0 +1,205 @@
|
|||||||
|
package new
|
||||||
|
|
||||||
|
import (
|
||||||
|
"os"
|
||||||
|
"path/filepath"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
|
"github.com/stretchr/testify/require"
|
||||||
|
"github.com/zeromicro/go-zero/tools/goctl/api/gogen"
|
||||||
|
"github.com/zeromicro/go-zero/tools/goctl/config"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestDoGenProjectWithModule_Integration(t *testing.T) {
|
||||||
|
tests := []struct {
|
||||||
|
name string
|
||||||
|
moduleName string
|
||||||
|
serviceName string
|
||||||
|
expectedMod string
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
name: "with custom module",
|
||||||
|
moduleName: "github.com/test/customapi",
|
||||||
|
serviceName: "myservice",
|
||||||
|
expectedMod: "github.com/test/customapi",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "with empty module",
|
||||||
|
moduleName: "",
|
||||||
|
serviceName: "myservice",
|
||||||
|
expectedMod: "myservice",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "with simple module",
|
||||||
|
moduleName: "simpleapi",
|
||||||
|
serviceName: "testapi",
|
||||||
|
expectedMod: "simpleapi",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, tt := range tests {
|
||||||
|
t.Run(tt.name, func(t *testing.T) {
|
||||||
|
// Create temporary directory
|
||||||
|
tempDir, err := os.MkdirTemp("", "goctl-api-module-test-*")
|
||||||
|
require.NoError(t, err)
|
||||||
|
defer os.RemoveAll(tempDir)
|
||||||
|
|
||||||
|
// Create service directory
|
||||||
|
serviceDir := filepath.Join(tempDir, tt.serviceName)
|
||||||
|
err = os.MkdirAll(serviceDir, 0755)
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
// Create a simple API file for testing
|
||||||
|
apiContent := `syntax = "v1"
|
||||||
|
|
||||||
|
type Request {
|
||||||
|
Name string ` + "`" + `path:"name,options=you|me"` + "`" + `
|
||||||
|
}
|
||||||
|
|
||||||
|
type Response {
|
||||||
|
Message string ` + "`" + `json:"message"` + "`" + `
|
||||||
|
}
|
||||||
|
|
||||||
|
service ` + tt.serviceName + `-api {
|
||||||
|
@handler ` + tt.serviceName + `Handler
|
||||||
|
get /from/:name(Request) returns (Response)
|
||||||
|
}
|
||||||
|
`
|
||||||
|
apiFile := filepath.Join(serviceDir, tt.serviceName+".api")
|
||||||
|
err = os.WriteFile(apiFile, []byte(apiContent), 0644)
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
// Call the module-aware service creation function
|
||||||
|
err = gogen.DoGenProjectWithModule(apiFile, serviceDir, tt.moduleName, config.DefaultFormat, false)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
|
||||||
|
// Check go.mod file
|
||||||
|
goModPath := filepath.Join(serviceDir, "go.mod")
|
||||||
|
assert.FileExists(t, goModPath)
|
||||||
|
|
||||||
|
// Verify module name in go.mod
|
||||||
|
content, err := os.ReadFile(goModPath)
|
||||||
|
require.NoError(t, err)
|
||||||
|
assert.Contains(t, string(content), "module "+tt.expectedMod)
|
||||||
|
|
||||||
|
// Check basic directory structure was created
|
||||||
|
assert.DirExists(t, filepath.Join(serviceDir, "etc"))
|
||||||
|
assert.DirExists(t, filepath.Join(serviceDir, "internal"))
|
||||||
|
assert.DirExists(t, filepath.Join(serviceDir, "internal", "handler"))
|
||||||
|
assert.DirExists(t, filepath.Join(serviceDir, "internal", "logic"))
|
||||||
|
assert.DirExists(t, filepath.Join(serviceDir, "internal", "svc"))
|
||||||
|
assert.DirExists(t, filepath.Join(serviceDir, "internal", "types"))
|
||||||
|
assert.DirExists(t, filepath.Join(serviceDir, "internal", "config"))
|
||||||
|
|
||||||
|
// Check that main.go imports use correct module
|
||||||
|
mainGoPath := filepath.Join(serviceDir, tt.serviceName+".go")
|
||||||
|
if _, err := os.Stat(mainGoPath); err == nil {
|
||||||
|
mainContent, err := os.ReadFile(mainGoPath)
|
||||||
|
require.NoError(t, err)
|
||||||
|
// Check for import of internal packages with correct module path
|
||||||
|
assert.Contains(t, string(mainContent), `"`+tt.expectedMod+"/internal/")
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestCreateServiceCommand_Integration(t *testing.T) {
|
||||||
|
tests := []struct {
|
||||||
|
name string
|
||||||
|
moduleName string
|
||||||
|
serviceName string
|
||||||
|
expectedMod string
|
||||||
|
shouldError bool
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
name: "valid service with custom module",
|
||||||
|
moduleName: "github.com/example/testapi",
|
||||||
|
serviceName: "myapi",
|
||||||
|
expectedMod: "github.com/example/testapi",
|
||||||
|
shouldError: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "valid service with no module",
|
||||||
|
moduleName: "",
|
||||||
|
serviceName: "simpleapi",
|
||||||
|
expectedMod: "simpleapi",
|
||||||
|
shouldError: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "invalid service name with hyphens",
|
||||||
|
moduleName: "github.com/test/api",
|
||||||
|
serviceName: "my-api",
|
||||||
|
expectedMod: "",
|
||||||
|
shouldError: true,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, tt := range tests {
|
||||||
|
t.Run(tt.name, func(t *testing.T) {
|
||||||
|
if tt.shouldError && tt.serviceName == "my-api" {
|
||||||
|
// Test that service names with hyphens are rejected
|
||||||
|
// This is tested in the actual command function, not the generate function
|
||||||
|
assert.Contains(t, tt.serviceName, "-")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// Create temporary directory
|
||||||
|
tempDir, err := os.MkdirTemp("", "goctl-create-service-test-*")
|
||||||
|
require.NoError(t, err)
|
||||||
|
defer os.RemoveAll(tempDir)
|
||||||
|
|
||||||
|
// Change to temp directory
|
||||||
|
oldDir, _ := os.Getwd()
|
||||||
|
defer os.Chdir(oldDir)
|
||||||
|
os.Chdir(tempDir)
|
||||||
|
|
||||||
|
// Set the module variable as the command would
|
||||||
|
VarStringModule = tt.moduleName
|
||||||
|
VarStringStyle = config.DefaultFormat
|
||||||
|
|
||||||
|
// Create the service directory manually since we're testing the core functionality
|
||||||
|
serviceDir := filepath.Join(tempDir, tt.serviceName)
|
||||||
|
|
||||||
|
// Simulate what CreateServiceCommand does - create API file and call DoGenProjectWithModule
|
||||||
|
err = os.MkdirAll(serviceDir, 0755)
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
// Create API file
|
||||||
|
apiContent := `syntax = "v1"
|
||||||
|
|
||||||
|
type Request {
|
||||||
|
Name string ` + "`" + `path:"name,options=you|me"` + "`" + `
|
||||||
|
}
|
||||||
|
|
||||||
|
type Response {
|
||||||
|
Message string ` + "`" + `json:"message"` + "`" + `
|
||||||
|
}
|
||||||
|
|
||||||
|
service ` + tt.serviceName + `-api {
|
||||||
|
@handler ` + tt.serviceName + `Handler
|
||||||
|
get /from/:name(Request) returns (Response)
|
||||||
|
}
|
||||||
|
`
|
||||||
|
apiFile := filepath.Join(serviceDir, tt.serviceName+".api")
|
||||||
|
err = os.WriteFile(apiFile, []byte(apiContent), 0644)
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
// Call DoGenProjectWithModule as CreateServiceCommand does
|
||||||
|
err = gogen.DoGenProjectWithModule(apiFile, serviceDir, VarStringModule, VarStringStyle, false)
|
||||||
|
|
||||||
|
if tt.shouldError {
|
||||||
|
assert.Error(t, err)
|
||||||
|
} else {
|
||||||
|
assert.NoError(t, err)
|
||||||
|
|
||||||
|
// Verify go.mod
|
||||||
|
goModPath := filepath.Join(serviceDir, "go.mod")
|
||||||
|
assert.FileExists(t, goModPath)
|
||||||
|
content, err := os.ReadFile(goModPath)
|
||||||
|
require.NoError(t, err)
|
||||||
|
assert.Contains(t, string(content), "module "+tt.expectedMod)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -268,7 +268,7 @@ func (v *ApiVisitor) VisitReplybody(ctx *api.ReplybodyContext) any {
|
|||||||
v.panic(lit.Expr(), fmt.Sprintf("expecting 'ID', but found golang keyword '%s'", lit.Expr().Text()))
|
v.panic(lit.Expr(), fmt.Sprintf("expecting 'ID', but found golang keyword '%s'", lit.Expr().Text()))
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
v.panic(dt.Expr(), fmt.Sprintf("unsupport %s", dt.Expr().Text()))
|
v.panic(dt.Expr(), fmt.Sprintf("unsupported %s", dt.Expr().Text()))
|
||||||
}
|
}
|
||||||
case *Literal:
|
case *Literal:
|
||||||
lit := dataType.Literal.Text()
|
lit := dataType.Literal.Text()
|
||||||
@@ -276,7 +276,7 @@ func (v *ApiVisitor) VisitReplybody(ctx *api.ReplybodyContext) any {
|
|||||||
v.panic(dataType.Literal, fmt.Sprintf("expecting 'ID', but found golang keyword '%s'", lit))
|
v.panic(dataType.Literal, fmt.Sprintf("expecting 'ID', but found golang keyword '%s'", lit))
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
v.panic(dt.Expr(), fmt.Sprintf("unsupport %s", dt.Expr().Text()))
|
v.panic(dt.Expr(), fmt.Sprintf("unsupported %s", dt.Expr().Text()))
|
||||||
}
|
}
|
||||||
|
|
||||||
return &Body{
|
return &Body{
|
||||||
|
|||||||
@@ -190,7 +190,7 @@ func (v *ApiVisitor) VisitTypeBlockStruct(ctx *api.TypeBlockStructContext) any {
|
|||||||
structExpr := v.newExprWithToken(ctx.GetStructToken())
|
structExpr := v.newExprWithToken(ctx.GetStructToken())
|
||||||
structTokenText := ctx.GetStructToken().GetText()
|
structTokenText := ctx.GetStructToken().GetText()
|
||||||
if structTokenText != "struct" {
|
if structTokenText != "struct" {
|
||||||
v.panic(structExpr, fmt.Sprintf("expecting 'struct', found imput '%s'", structTokenText))
|
v.panic(structExpr, fmt.Sprintf("expecting 'struct', found input '%s'", structTokenText))
|
||||||
}
|
}
|
||||||
|
|
||||||
if api.IsGolangKeyWord(structTokenText, "struct") {
|
if api.IsGolangKeyWord(structTokenText, "struct") {
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ type parser struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Parse parses the api file.
|
// Parse parses the api file.
|
||||||
// Depreacted: use tools/goctl/pkg/parser/api/parser/parser.go:18 instead,
|
// Deprecated: use tools/goctl/pkg/parser/api/parser/parser.go:18 instead,
|
||||||
// it will be removed in the future.
|
// it will be removed in the future.
|
||||||
func Parse(filename string) (*spec.ApiSpec, error) {
|
func Parse(filename string) (*spec.ApiSpec, error) {
|
||||||
if env.UseExperimental() {
|
if env.UseExperimental() {
|
||||||
@@ -63,14 +63,14 @@ func parseContent(content string, skipCheckTypeDeclaration bool, filename ...str
|
|||||||
return apiSpec, nil
|
return apiSpec, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// Depreacted: use tools/goctl/pkg/parser/api/parser/parser.go:18 instead,
|
// Deprecated: use tools/goctl/pkg/parser/api/parser/parser.go:18 instead,
|
||||||
// it will be removed in the future.
|
// it will be removed in the future.
|
||||||
// ParseContent parses the api content
|
// ParseContent parses the api content
|
||||||
func ParseContent(content string, filename ...string) (*spec.ApiSpec, error) {
|
func ParseContent(content string, filename ...string) (*spec.ApiSpec, error) {
|
||||||
return parseContent(content, false, filename...)
|
return parseContent(content, false, filename...)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Depreacted: use tools/goctl/pkg/parser/api/parser/parser.go:18 instead,
|
// Deprecated: use tools/goctl/pkg/parser/api/parser/parser.go:18 instead,
|
||||||
// it will be removed in the future.
|
// it will be removed in the future.
|
||||||
// ParseContentWithParserSkipCheckTypeDeclaration parses the api content with skip check type declaration
|
// ParseContentWithParserSkipCheckTypeDeclaration parses the api content with skip check type declaration
|
||||||
func ParseContentWithParserSkipCheckTypeDeclaration(content string, filename ...string) (*spec.ApiSpec, error) {
|
func ParseContentWithParserSkipCheckTypeDeclaration(content string, filename ...string) (*spec.ApiSpec, error) {
|
||||||
@@ -227,7 +227,7 @@ func (p parser) astTypeToSpec(in ast.DataType) spec.Type {
|
|||||||
return spec.PointerType{RawName: v.PointerExpr.Text(), Type: spec.DefineStruct{RawName: raw}}
|
return spec.PointerType{RawName: v.PointerExpr.Text(), Type: spec.DefineStruct{RawName: raw}}
|
||||||
}
|
}
|
||||||
|
|
||||||
panic(fmt.Sprintf("unspported type %+v", in))
|
panic(fmt.Sprintf("unsupported type %+v", in))
|
||||||
}
|
}
|
||||||
|
|
||||||
func (p parser) stringExprs(docs []ast.Expr) []string {
|
func (p parser) stringExprs(docs []ast.Expr) []string {
|
||||||
|
|||||||
@@ -8,68 +8,71 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
func getBoolFromKVOrDefault(properties map[string]string, key string, def bool) bool {
|
func getBoolFromKVOrDefault(properties map[string]string, key string, def bool) bool {
|
||||||
if len(properties) == 0 {
|
return getOrDefault(properties, key, def, func(str string, def bool) bool {
|
||||||
return def
|
res, err := strconv.ParseBool(str)
|
||||||
}
|
if err != nil {
|
||||||
md := metadata.New(properties)
|
return def
|
||||||
val := md.Get(key)
|
}
|
||||||
if len(val) == 0 {
|
|
||||||
return def
|
|
||||||
}
|
|
||||||
str := util.Unquote(val[0])
|
|
||||||
if len(str) == 0 {
|
|
||||||
return def
|
|
||||||
}
|
|
||||||
res, _ := strconv.ParseBool(str)
|
|
||||||
return res
|
|
||||||
}
|
|
||||||
|
|
||||||
func getStringFromKVOrDefault(properties map[string]string, key string, def string) string {
|
return res
|
||||||
if len(properties) == 0 {
|
})
|
||||||
return def
|
|
||||||
}
|
|
||||||
md := metadata.New(properties)
|
|
||||||
val := md.Get(key)
|
|
||||||
if len(val) == 0 {
|
|
||||||
return def
|
|
||||||
}
|
|
||||||
str := util.Unquote(val[0])
|
|
||||||
if len(str) == 0 {
|
|
||||||
return def
|
|
||||||
}
|
|
||||||
return str
|
|
||||||
}
|
|
||||||
|
|
||||||
func getListFromInfoOrDefault(properties map[string]string, key string, def []string) []string {
|
|
||||||
if len(properties) == 0 {
|
|
||||||
return def
|
|
||||||
}
|
|
||||||
md := metadata.New(properties)
|
|
||||||
val := md.Get(key)
|
|
||||||
if len(val) == 0 {
|
|
||||||
return def
|
|
||||||
}
|
|
||||||
|
|
||||||
str := util.Unquote(val[0])
|
|
||||||
if len(str) == 0 {
|
|
||||||
return def
|
|
||||||
}
|
|
||||||
resp := util.FieldsAndTrimSpace(str, commaRune)
|
|
||||||
if len(resp) == 0 {
|
|
||||||
return def
|
|
||||||
}
|
|
||||||
return resp
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func getFirstUsableString(def ...string) string {
|
func getFirstUsableString(def ...string) string {
|
||||||
if len(def) == 0 {
|
if len(def) == 0 {
|
||||||
return ""
|
return ""
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, val := range def {
|
for _, val := range def {
|
||||||
str := util.Unquote(val)
|
// Try to unquote if it's a quoted string
|
||||||
if len(str) != 0 {
|
if str, err := strconv.Unquote(val); err == nil && len(str) != 0 {
|
||||||
return str
|
return str
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Otherwise, use the value as-is if it's not empty
|
||||||
|
if len(val) != 0 {
|
||||||
|
return val
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return ""
|
return ""
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func getListFromInfoOrDefault(properties map[string]string, key string, def []string) []string {
|
||||||
|
return getOrDefault(properties, key, def, func(str string, def []string) []string {
|
||||||
|
resp := util.FieldsAndTrimSpace(str, commaRune)
|
||||||
|
if len(resp) == 0 {
|
||||||
|
return def
|
||||||
|
}
|
||||||
|
return resp
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// getOrDefault abstracts the common logic for fetching, unquoting, and defaulting.
|
||||||
|
func getOrDefault[T any](properties map[string]string, key string, def T, convert func(string, T) T) T {
|
||||||
|
if len(properties) == 0 {
|
||||||
|
return def
|
||||||
|
}
|
||||||
|
|
||||||
|
md := metadata.New(properties)
|
||||||
|
val := md.Get(key)
|
||||||
|
if len(val) == 0 {
|
||||||
|
return def
|
||||||
|
}
|
||||||
|
|
||||||
|
str := val[0]
|
||||||
|
if unquoted, err := strconv.Unquote(str); err == nil {
|
||||||
|
str = unquoted
|
||||||
|
}
|
||||||
|
if len(str) == 0 {
|
||||||
|
return def
|
||||||
|
}
|
||||||
|
|
||||||
|
return convert(str, def)
|
||||||
|
}
|
||||||
|
|
||||||
|
func getStringFromKVOrDefault(properties map[string]string, key string, def string) string {
|
||||||
|
return getOrDefault(properties, key, def, func(str string, def string) string {
|
||||||
|
return str
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|||||||
@@ -21,6 +21,19 @@ func Test_getBoolFromKVOrDefault(t *testing.T) {
|
|||||||
assert.False(t, getBoolFromKVOrDefault(properties, "empty_value", false))
|
assert.False(t, getBoolFromKVOrDefault(properties, "empty_value", false))
|
||||||
assert.False(t, getBoolFromKVOrDefault(nil, "nil", false))
|
assert.False(t, getBoolFromKVOrDefault(nil, "nil", false))
|
||||||
assert.False(t, getBoolFromKVOrDefault(map[string]string{}, "empty", false))
|
assert.False(t, getBoolFromKVOrDefault(map[string]string{}, "empty", false))
|
||||||
|
|
||||||
|
// Test with unquoted values (as stored by RawText())
|
||||||
|
unquotedProperties := map[string]string{
|
||||||
|
"enabled": "true",
|
||||||
|
"disabled": "false",
|
||||||
|
"invalid": "notabool",
|
||||||
|
"empty_value": "",
|
||||||
|
}
|
||||||
|
|
||||||
|
assert.True(t, getBoolFromKVOrDefault(unquotedProperties, "enabled", false))
|
||||||
|
assert.False(t, getBoolFromKVOrDefault(unquotedProperties, "disabled", true))
|
||||||
|
assert.False(t, getBoolFromKVOrDefault(unquotedProperties, "invalid", false))
|
||||||
|
assert.False(t, getBoolFromKVOrDefault(unquotedProperties, "empty_value", false))
|
||||||
}
|
}
|
||||||
|
|
||||||
func Test_getStringFromKVOrDefault(t *testing.T) {
|
func Test_getStringFromKVOrDefault(t *testing.T) {
|
||||||
@@ -34,6 +47,17 @@ func Test_getStringFromKVOrDefault(t *testing.T) {
|
|||||||
assert.Equal(t, "default", getStringFromKVOrDefault(properties, "missing", "default"))
|
assert.Equal(t, "default", getStringFromKVOrDefault(properties, "missing", "default"))
|
||||||
assert.Equal(t, "default", getStringFromKVOrDefault(nil, "nil", "default"))
|
assert.Equal(t, "default", getStringFromKVOrDefault(nil, "nil", "default"))
|
||||||
assert.Equal(t, "default", getStringFromKVOrDefault(map[string]string{}, "empty", "default"))
|
assert.Equal(t, "default", getStringFromKVOrDefault(map[string]string{}, "empty", "default"))
|
||||||
|
|
||||||
|
// Test with unquoted values (as stored by RawText())
|
||||||
|
unquotedProperties := map[string]string{
|
||||||
|
"name": "example",
|
||||||
|
"title": "Demo API",
|
||||||
|
"empty": "",
|
||||||
|
}
|
||||||
|
|
||||||
|
assert.Equal(t, "example", getStringFromKVOrDefault(unquotedProperties, "name", "default"))
|
||||||
|
assert.Equal(t, "Demo API", getStringFromKVOrDefault(unquotedProperties, "title", "default"))
|
||||||
|
assert.Equal(t, "default", getStringFromKVOrDefault(unquotedProperties, "empty", "default"))
|
||||||
}
|
}
|
||||||
|
|
||||||
func Test_getListFromInfoOrDefault(t *testing.T) {
|
func Test_getListFromInfoOrDefault(t *testing.T) {
|
||||||
@@ -50,4 +74,123 @@ func Test_getListFromInfoOrDefault(t *testing.T) {
|
|||||||
assert.Equal(t, []string{"default"}, getListFromInfoOrDefault(map[string]string{
|
assert.Equal(t, []string{"default"}, getListFromInfoOrDefault(map[string]string{
|
||||||
"foo": ",,",
|
"foo": ",,",
|
||||||
}, "foo", []string{"default"}))
|
}, "foo", []string{"default"}))
|
||||||
|
|
||||||
|
// Test with unquoted values (as stored by RawText())
|
||||||
|
unquotedProperties := map[string]string{
|
||||||
|
"list": "a, b, c",
|
||||||
|
"schemes": "http,https",
|
||||||
|
"tags": "query",
|
||||||
|
"empty": "",
|
||||||
|
}
|
||||||
|
|
||||||
|
// Note: FieldsAndTrimSpace doesn't actually trim the spaces from returned values
|
||||||
|
assert.Equal(t, []string{"a", " b", " c"}, getListFromInfoOrDefault(unquotedProperties, "list", []string{"default"}))
|
||||||
|
assert.Equal(t, []string{"http", "https"}, getListFromInfoOrDefault(unquotedProperties, "schemes", []string{"default"}))
|
||||||
|
assert.Equal(t, []string{"query"}, getListFromInfoOrDefault(unquotedProperties, "tags", []string{"default"}))
|
||||||
|
assert.Equal(t, []string{"default"}, getListFromInfoOrDefault(unquotedProperties, "empty", []string{"default"}))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func Test_getFirstUsableString(t *testing.T) {
|
||||||
|
t.Run("empty input", func(t *testing.T) {
|
||||||
|
result := getFirstUsableString()
|
||||||
|
assert.Equal(t, "", result, "should return empty string for no arguments")
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("single plain string", func(t *testing.T) {
|
||||||
|
result := getFirstUsableString("Check server health status.")
|
||||||
|
assert.Equal(t, "Check server health status.", result)
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("single quoted string", func(t *testing.T) {
|
||||||
|
// This is how Go would represent a quoted string literal
|
||||||
|
result := getFirstUsableString(`"Check server health status."`)
|
||||||
|
assert.Equal(t, "Check server health status.", result, "should unquote quoted strings")
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("multiple plain strings", func(t *testing.T) {
|
||||||
|
result := getFirstUsableString("", "second", "third")
|
||||||
|
assert.Equal(t, "second", result, "should return first non-empty string")
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("handler name fallback", func(t *testing.T) {
|
||||||
|
// Simulates the real use case: @doc text, handler name
|
||||||
|
result := getFirstUsableString("", "HealthCheck")
|
||||||
|
assert.Equal(t, "HealthCheck", result, "should fallback to handler name")
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("doc text over handler name", func(t *testing.T) {
|
||||||
|
// Simulates the real use case with @doc text
|
||||||
|
result := getFirstUsableString("Check server health status.", "HealthCheck")
|
||||||
|
assert.Equal(t, "Check server health status.", result, "should use doc text over handler name")
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("empty strings before valid", func(t *testing.T) {
|
||||||
|
result := getFirstUsableString("", "", "valid")
|
||||||
|
assert.Equal(t, "valid", result, "should skip empty strings")
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("all empty strings", func(t *testing.T) {
|
||||||
|
result := getFirstUsableString("", "", "")
|
||||||
|
assert.Equal(t, "", result, "should return empty if all are empty")
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("quoted then plain", func(t *testing.T) {
|
||||||
|
result := getFirstUsableString(`"quoted"`, "plain")
|
||||||
|
assert.Equal(t, "quoted", result, "should unquote first quoted string")
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("plain then quoted", func(t *testing.T) {
|
||||||
|
result := getFirstUsableString("plain", `"quoted"`)
|
||||||
|
assert.Equal(t, "plain", result, "should use first plain string")
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("invalid quoted string", func(t *testing.T) {
|
||||||
|
// String that looks quoted but isn't valid Go syntax
|
||||||
|
result := getFirstUsableString(`"incomplete`, "fallback")
|
||||||
|
assert.Equal(t, `"incomplete`, result, "should use as-is if unquote fails but not empty")
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("whitespace only", func(t *testing.T) {
|
||||||
|
result := getFirstUsableString(" ", "fallback")
|
||||||
|
assert.Equal(t, " ", result, "should not trim whitespace, return as-is")
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("real world API doc scenario", func(t *testing.T) {
|
||||||
|
// This is the actual bug scenario from issue #5229
|
||||||
|
atDocText := "Check server health status."
|
||||||
|
handlerName := "HealthCheck"
|
||||||
|
|
||||||
|
result := getFirstUsableString(atDocText, handlerName)
|
||||||
|
assert.Equal(t, "Check server health status.", result,
|
||||||
|
"should use @doc text for API summary")
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("real world with empty doc", func(t *testing.T) {
|
||||||
|
// When @doc is empty, should fall back to handler name
|
||||||
|
atDocText := ""
|
||||||
|
handlerName := "HealthCheck"
|
||||||
|
|
||||||
|
result := getFirstUsableString(atDocText, handlerName)
|
||||||
|
assert.Equal(t, "HealthCheck", result,
|
||||||
|
"should fallback to handler name when @doc is empty")
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("complex summary with special characters", func(t *testing.T) {
|
||||||
|
result := getFirstUsableString("Get user by ID: /users/{id}")
|
||||||
|
assert.Equal(t, "Get user by ID: /users/{id}", result,
|
||||||
|
"should handle special characters in plain strings")
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("multiline string", func(t *testing.T) {
|
||||||
|
result := getFirstUsableString("Line 1\nLine 2")
|
||||||
|
assert.Equal(t, "Line 1\nLine 2", result,
|
||||||
|
"should handle multiline strings")
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("unicode characters", func(t *testing.T) {
|
||||||
|
result := getFirstUsableString("健康检查", "HealthCheck")
|
||||||
|
assert.Equal(t, "健康检查", result,
|
||||||
|
"should handle unicode characters")
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -8,28 +8,37 @@ import (
|
|||||||
apiSpec "github.com/zeromicro/go-zero/tools/goctl/api/spec"
|
apiSpec "github.com/zeromicro/go-zero/tools/goctl/api/spec"
|
||||||
)
|
)
|
||||||
|
|
||||||
func isPostJson(ctx Context, method string, tp apiSpec.Type) (string, bool) {
|
func isRequestBodyJson(ctx Context, method string, tp apiSpec.Type) (string, bool) {
|
||||||
if !strings.EqualFold(method, http.MethodPost) {
|
// Support HTTP methods that commonly use request bodies with JSON
|
||||||
|
// POST, PUT, PATCH are standard methods with bodies
|
||||||
|
// DELETE can also have a body (though less common)
|
||||||
|
method = strings.ToUpper(method)
|
||||||
|
if method != http.MethodPost && method != http.MethodPut &&
|
||||||
|
method != http.MethodPatch && method != http.MethodDelete {
|
||||||
return "", false
|
return "", false
|
||||||
}
|
}
|
||||||
|
|
||||||
structType, ok := tp.(apiSpec.DefineStruct)
|
structType, ok := tp.(apiSpec.DefineStruct)
|
||||||
if !ok {
|
if !ok {
|
||||||
return "", false
|
return "", false
|
||||||
}
|
}
|
||||||
var isPostJson bool
|
|
||||||
|
var hasJsonField bool
|
||||||
rangeMemberAndDo(ctx, structType, func(tag *apiSpec.Tags, required bool, member apiSpec.Member) {
|
rangeMemberAndDo(ctx, structType, func(tag *apiSpec.Tags, required bool, member apiSpec.Member) {
|
||||||
jsonTag, _ := tag.Get(tagJson)
|
jsonTag, _ := tag.Get(tagJson)
|
||||||
if !isPostJson {
|
if !hasJsonField {
|
||||||
isPostJson = jsonTag != nil
|
hasJsonField = jsonTag != nil
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
return structType.RawName, isPostJson
|
|
||||||
|
return structType.RawName, hasJsonField
|
||||||
}
|
}
|
||||||
|
|
||||||
func parametersFromType(ctx Context, method string, tp apiSpec.Type) []spec.Parameter {
|
func parametersFromType(ctx Context, method string, tp apiSpec.Type) []spec.Parameter {
|
||||||
if tp == nil {
|
if tp == nil {
|
||||||
return []spec.Parameter{}
|
return []spec.Parameter{}
|
||||||
}
|
}
|
||||||
|
|
||||||
structType, ok := tp.(apiSpec.DefineStruct)
|
structType, ok := tp.(apiSpec.DefineStruct)
|
||||||
if !ok {
|
if !ok {
|
||||||
return []spec.Parameter{}
|
return []spec.Parameter{}
|
||||||
@@ -43,15 +52,13 @@ func parametersFromType(ctx Context, method string, tp apiSpec.Type) []spec.Para
|
|||||||
rangeMemberAndDo(ctx, structType, func(tag *apiSpec.Tags, required bool, member apiSpec.Member) {
|
rangeMemberAndDo(ctx, structType, func(tag *apiSpec.Tags, required bool, member apiSpec.Member) {
|
||||||
headerTag, _ := tag.Get(tagHeader)
|
headerTag, _ := tag.Get(tagHeader)
|
||||||
hasHeader := headerTag != nil
|
hasHeader := headerTag != nil
|
||||||
|
|
||||||
pathParameterTag, _ := tag.Get(tagPath)
|
pathParameterTag, _ := tag.Get(tagPath)
|
||||||
hasPathParameter := pathParameterTag != nil
|
hasPathParameter := pathParameterTag != nil
|
||||||
|
|
||||||
formTag, _ := tag.Get(tagForm)
|
formTag, _ := tag.Get(tagForm)
|
||||||
hasForm := formTag != nil
|
hasForm := formTag != nil
|
||||||
|
|
||||||
jsonTag, _ := tag.Get(tagJson)
|
jsonTag, _ := tag.Get(tagJson)
|
||||||
hasJson := jsonTag != nil
|
hasJson := jsonTag != nil
|
||||||
|
|
||||||
if hasHeader {
|
if hasHeader {
|
||||||
minimum, maximum, exclusiveMinimum, exclusiveMaximum := rangeValueFromOptions(headerTag.Options)
|
minimum, maximum, exclusiveMinimum, exclusiveMaximum := rangeValueFromOptions(headerTag.Options)
|
||||||
resp = append(resp, spec.Parameter{
|
resp = append(resp, spec.Parameter{
|
||||||
@@ -75,6 +82,7 @@ func parametersFromType(ctx Context, method string, tp apiSpec.Type) []spec.Para
|
|||||||
},
|
},
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
if hasPathParameter {
|
if hasPathParameter {
|
||||||
minimum, maximum, exclusiveMinimum, exclusiveMaximum := rangeValueFromOptions(pathParameterTag.Options)
|
minimum, maximum, exclusiveMinimum, exclusiveMaximum := rangeValueFromOptions(pathParameterTag.Options)
|
||||||
resp = append(resp, spec.Parameter{
|
resp = append(resp, spec.Parameter{
|
||||||
@@ -98,6 +106,7 @@ func parametersFromType(ctx Context, method string, tp apiSpec.Type) []spec.Para
|
|||||||
},
|
},
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
if hasForm {
|
if hasForm {
|
||||||
minimum, maximum, exclusiveMinimum, exclusiveMaximum := rangeValueFromOptions(formTag.Options)
|
minimum, maximum, exclusiveMinimum, exclusiveMaximum := rangeValueFromOptions(formTag.Options)
|
||||||
if strings.EqualFold(method, http.MethodGet) {
|
if strings.EqualFold(method, http.MethodGet) {
|
||||||
@@ -145,8 +154,8 @@ func parametersFromType(ctx Context, method string, tp apiSpec.Type) []spec.Para
|
|||||||
},
|
},
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if hasJson {
|
if hasJson {
|
||||||
minimum, maximum, exclusiveMinimum, exclusiveMaximum := rangeValueFromOptions(jsonTag.Options)
|
minimum, maximum, exclusiveMinimum, exclusiveMaximum := rangeValueFromOptions(jsonTag.Options)
|
||||||
if required {
|
if required {
|
||||||
@@ -179,9 +188,10 @@ func parametersFromType(ctx Context, method string, tp apiSpec.Type) []spec.Para
|
|||||||
properties[jsonTag.Name] = schema
|
properties[jsonTag.Name] = schema
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
if len(properties) > 0 {
|
if len(properties) > 0 {
|
||||||
if ctx.UseDefinitions {
|
if ctx.UseDefinitions {
|
||||||
structName, ok := isPostJson(ctx, method, tp)
|
structName, ok := isRequestBodyJson(ctx, method, tp)
|
||||||
if ok {
|
if ok {
|
||||||
resp = append(resp, spec.Parameter{
|
resp = append(resp, spec.Parameter{
|
||||||
ParamProps: spec.ParamProps{
|
ParamProps: spec.ParamProps{
|
||||||
@@ -213,5 +223,6 @@ func parametersFromType(ctx Context, method string, tp apiSpec.Type) []spec.Para
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return resp
|
return resp
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ import (
|
|||||||
apiSpec "github.com/zeromicro/go-zero/tools/goctl/api/spec"
|
apiSpec "github.com/zeromicro/go-zero/tools/goctl/api/spec"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestIsPostJson(t *testing.T) {
|
func TestIsRequestBodyJson(t *testing.T) {
|
||||||
tests := []struct {
|
tests := []struct {
|
||||||
name string
|
name string
|
||||||
method string
|
method string
|
||||||
@@ -18,13 +18,18 @@ func TestIsPostJson(t *testing.T) {
|
|||||||
{"POST with JSON", http.MethodPost, true, true},
|
{"POST with JSON", http.MethodPost, true, true},
|
||||||
{"POST without JSON", http.MethodPost, false, false},
|
{"POST without JSON", http.MethodPost, false, false},
|
||||||
{"GET with JSON", http.MethodGet, true, false},
|
{"GET with JSON", http.MethodGet, true, false},
|
||||||
{"PUT with JSON", http.MethodPut, true, false},
|
{"PUT with JSON", http.MethodPut, true, true},
|
||||||
|
{"PUT without JSON", http.MethodPut, false, false},
|
||||||
|
{"PATCH with JSON", http.MethodPatch, true, true},
|
||||||
|
{"PATCH without JSON", http.MethodPatch, false, false},
|
||||||
|
{"DELETE with JSON", http.MethodDelete, true, true},
|
||||||
|
{"DELETE without JSON", http.MethodDelete, false, false},
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, tt := range tests {
|
for _, tt := range tests {
|
||||||
t.Run(tt.name, func(t *testing.T) {
|
t.Run(tt.name, func(t *testing.T) {
|
||||||
testStruct := createTestStruct("TestStruct", tt.hasJson)
|
testStruct := createTestStruct("TestStruct", tt.hasJson)
|
||||||
_, result := isPostJson(testingContext(t), tt.method, testStruct)
|
_, result := isRequestBodyJson(testingContext(t), tt.method, testStruct)
|
||||||
assert.Equal(t, tt.expected, result)
|
assert.Equal(t, tt.expected, result)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@@ -41,6 +46,12 @@ func TestParametersFromType(t *testing.T) {
|
|||||||
}{
|
}{
|
||||||
{"POST JSON with definitions", http.MethodPost, true, true, 1, true},
|
{"POST JSON with definitions", http.MethodPost, true, true, 1, true},
|
||||||
{"POST JSON without definitions", http.MethodPost, false, true, 1, true},
|
{"POST JSON without definitions", http.MethodPost, false, true, 1, true},
|
||||||
|
{"PUT JSON with definitions", http.MethodPut, true, true, 1, true},
|
||||||
|
{"PUT JSON without definitions", http.MethodPut, false, true, 1, true},
|
||||||
|
{"PATCH JSON with definitions", http.MethodPatch, true, true, 1, true},
|
||||||
|
{"PATCH JSON without definitions", http.MethodPatch, false, true, 1, true},
|
||||||
|
{"DELETE JSON with definitions", http.MethodDelete, true, true, 1, true},
|
||||||
|
{"DELETE JSON without definitions", http.MethodDelete, false, true, 1, true},
|
||||||
{"GET with form", http.MethodGet, false, false, 1, false},
|
{"GET with form", http.MethodGet, false, false, 1, false},
|
||||||
{"POST with form", http.MethodPost, false, false, 1, false},
|
{"POST with form", http.MethodPost, false, false, 1, false},
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -19,7 +19,11 @@ func spec2Paths(ctx Context, srv apiSpec.Service) *spec.Paths {
|
|||||||
for _, route := range group.Routes {
|
for _, route := range group.Routes {
|
||||||
routPath := pathVariable2SwaggerVariable(ctx, route.Path)
|
routPath := pathVariable2SwaggerVariable(ctx, route.Path)
|
||||||
if len(prefix) > 0 && prefix != "." {
|
if len(prefix) > 0 && prefix != "." {
|
||||||
routPath = "/" + path.Clean(prefix) + routPath
|
if routPath == "/" {
|
||||||
|
routPath = "/" + path.Clean(prefix)
|
||||||
|
} else {
|
||||||
|
routPath = "/" + path.Clean(prefix) + routPath
|
||||||
|
}
|
||||||
}
|
}
|
||||||
pathItem := spec2Path(ctx, group, route)
|
pathItem := spec2Path(ctx, group, route)
|
||||||
existPathItem, ok := paths.Paths[routPath]
|
existPathItem, ok := paths.Paths[routPath]
|
||||||
|
|||||||
90
tools/goctl/api/swagger/path_test.go
Normal file
90
tools/goctl/api/swagger/path_test.go
Normal file
@@ -0,0 +1,90 @@
|
|||||||
|
package swagger
|
||||||
|
|
||||||
|
import (
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
|
"github.com/zeromicro/go-zero/tools/goctl/api/spec"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestSpec2PathsWithRootRoute(t *testing.T) {
|
||||||
|
tests := []struct {
|
||||||
|
name string
|
||||||
|
prefix string
|
||||||
|
routePath string
|
||||||
|
expectedPath string
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
name: "prefix with root route",
|
||||||
|
prefix: "/api/v1/shoppings",
|
||||||
|
routePath: "/",
|
||||||
|
expectedPath: "/api/v1/shoppings",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "prefix with sub route",
|
||||||
|
prefix: "/api/v1/shoppings",
|
||||||
|
routePath: "/list",
|
||||||
|
expectedPath: "/api/v1/shoppings/list",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "empty prefix with root route",
|
||||||
|
prefix: "",
|
||||||
|
routePath: "/",
|
||||||
|
expectedPath: "/",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "empty prefix with sub route",
|
||||||
|
prefix: "",
|
||||||
|
routePath: "/list",
|
||||||
|
expectedPath: "/list",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "prefix with trailing slash and root route",
|
||||||
|
prefix: "/api/v1/shoppings/",
|
||||||
|
routePath: "/",
|
||||||
|
expectedPath: "/api/v1/shoppings",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "prefix without leading slash and root route",
|
||||||
|
prefix: "api/v1/shoppings",
|
||||||
|
routePath: "/",
|
||||||
|
expectedPath: "/api/v1/shoppings",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "single level prefix with root route",
|
||||||
|
prefix: "/api",
|
||||||
|
routePath: "/",
|
||||||
|
expectedPath: "/api",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, tt := range tests {
|
||||||
|
t.Run(tt.name, func(t *testing.T) {
|
||||||
|
srv := spec.Service{
|
||||||
|
Groups: []spec.Group{
|
||||||
|
{
|
||||||
|
Annotation: spec.Annotation{
|
||||||
|
Properties: map[string]string{
|
||||||
|
propertyKeyPrefix: tt.prefix,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
Routes: []spec.Route{
|
||||||
|
{
|
||||||
|
Method: "get",
|
||||||
|
Path: tt.routePath,
|
||||||
|
Handler: "TestHandler",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
ctx := testingContext(t)
|
||||||
|
paths := spec2Paths(ctx, srv)
|
||||||
|
|
||||||
|
assert.Contains(t, paths.Paths, tt.expectedPath,
|
||||||
|
"Expected path %s not found in generated paths. Got: %v",
|
||||||
|
tt.expectedPath, paths.Paths)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -70,15 +70,40 @@ func propertiesFromType(ctx Context, tp apiSpec.Type) (spec.SchemaProperties, []
|
|||||||
switch sampleTypeFromGoType(ctx, member.Type) {
|
switch sampleTypeFromGoType(ctx, member.Type) {
|
||||||
case swaggerTypeArray:
|
case swaggerTypeArray:
|
||||||
schema.Items = itemsFromGoType(ctx, member.Type)
|
schema.Items = itemsFromGoType(ctx, member.Type)
|
||||||
|
// Special handling for arrays with useDefinitions
|
||||||
|
if ctx.UseDefinitions {
|
||||||
|
// For arrays, check if the array element (not the array itself) contains a struct
|
||||||
|
if arrayType, ok := member.Type.(apiSpec.ArrayType); ok {
|
||||||
|
if structName, containsStruct := containsStruct(arrayType.Value); containsStruct {
|
||||||
|
// Set the $ref inside the items, not at the schema level
|
||||||
|
schema.Items = &spec.SchemaOrArray{
|
||||||
|
Schema: &spec.Schema{
|
||||||
|
SchemaProps: spec.SchemaProps{
|
||||||
|
Ref: spec.MustCreateRef(getRefName(structName)),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
case swaggerTypeObject:
|
case swaggerTypeObject:
|
||||||
p, r := propertiesFromType(ctx, member.Type)
|
p, r := propertiesFromType(ctx, member.Type)
|
||||||
schema.Properties = p
|
schema.Properties = p
|
||||||
schema.Required = r
|
schema.Required = r
|
||||||
}
|
// For objects with useDefinitions, set $ref at schema level
|
||||||
if ctx.UseDefinitions {
|
if ctx.UseDefinitions {
|
||||||
structName, containsStruct := containsStruct(member.Type)
|
structName, containsStruct := containsStruct(member.Type)
|
||||||
if containsStruct {
|
if containsStruct {
|
||||||
schema.SchemaProps.Ref = spec.MustCreateRef(getRefName(structName))
|
schema.SchemaProps.Ref = spec.MustCreateRef(getRefName(structName))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
default:
|
||||||
|
// For non-array, non-object types, apply useDefinitions logic
|
||||||
|
if ctx.UseDefinitions {
|
||||||
|
structName, containsStruct := containsStruct(member.Type)
|
||||||
|
if containsStruct {
|
||||||
|
schema.SchemaProps.Ref = spec.MustCreateRef(getRefName(structName))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ package swagger
|
|||||||
import (
|
import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"github.com/zeromicro/go-zero/tools/goctl/api/spec"
|
||||||
"github.com/stretchr/testify/assert"
|
"github.com/stretchr/testify/assert"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -23,3 +24,117 @@ func Test_pathVariable2SwaggerVariable(t *testing.T) {
|
|||||||
assert.Equal(t, tc.expected, result)
|
assert.Equal(t, tc.expected, result)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestArrayDefinitionsBug(t *testing.T) {
|
||||||
|
// Test case for the bug where array of structs with useDefinitions
|
||||||
|
// generates incorrect swagger JSON structure
|
||||||
|
|
||||||
|
// Context with useDefinitions enabled
|
||||||
|
ctx := Context{
|
||||||
|
UseDefinitions: true,
|
||||||
|
}
|
||||||
|
|
||||||
|
// Create a test struct containing an array of structs
|
||||||
|
testStruct := spec.DefineStruct{
|
||||||
|
RawName: "TestStruct",
|
||||||
|
Members: []spec.Member{
|
||||||
|
{
|
||||||
|
Name: "ArrayField",
|
||||||
|
Type: spec.ArrayType{
|
||||||
|
Value: spec.DefineStruct{
|
||||||
|
RawName: "ItemStruct",
|
||||||
|
Members: []spec.Member{
|
||||||
|
{
|
||||||
|
Name: "ItemName",
|
||||||
|
Type: spec.PrimitiveType{RawName: "string"},
|
||||||
|
Tag: `json:"itemName"`,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
Tag: `json:"arrayField"`,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
// Get properties from the struct
|
||||||
|
properties, _ := propertiesFromType(ctx, testStruct)
|
||||||
|
|
||||||
|
// Check that we have the array field
|
||||||
|
assert.Contains(t, properties, "arrayField")
|
||||||
|
arrayField := properties["arrayField"]
|
||||||
|
|
||||||
|
// Verify the array field has correct structure
|
||||||
|
assert.Equal(t, "array", arrayField.Type[0])
|
||||||
|
|
||||||
|
// Check that we have items
|
||||||
|
assert.NotNil(t, arrayField.Items, "Array should have items defined")
|
||||||
|
assert.NotNil(t, arrayField.Items.Schema, "Array items should have schema")
|
||||||
|
|
||||||
|
// The FIX: $ref should be inside items, not at schema level
|
||||||
|
hasRef := arrayField.Ref.String() != ""
|
||||||
|
assert.False(t, hasRef, "Schema level should NOT have $ref")
|
||||||
|
|
||||||
|
// The $ref should be in the items
|
||||||
|
hasItemsRef := arrayField.Items.Schema.Ref.String() != ""
|
||||||
|
assert.True(t, hasItemsRef, "Items should have $ref")
|
||||||
|
assert.Equal(t, "#/definitions/ItemStruct", arrayField.Items.Schema.Ref.String())
|
||||||
|
|
||||||
|
// Verify there are no other properties in the items when using $ref
|
||||||
|
assert.Nil(t, arrayField.Items.Schema.Properties, "Items with $ref should not have properties")
|
||||||
|
assert.Empty(t, arrayField.Items.Schema.Required, "Items with $ref should not have required")
|
||||||
|
assert.Empty(t, arrayField.Items.Schema.Type, "Items with $ref should not have type")
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestArrayWithoutDefinitions(t *testing.T) {
|
||||||
|
// Test that arrays work correctly when useDefinitions is false
|
||||||
|
ctx := Context{
|
||||||
|
UseDefinitions: false, // This is the default
|
||||||
|
}
|
||||||
|
|
||||||
|
// Create the same test struct
|
||||||
|
testStruct := spec.DefineStruct{
|
||||||
|
RawName: "TestStruct",
|
||||||
|
Members: []spec.Member{
|
||||||
|
{
|
||||||
|
Name: "ArrayField",
|
||||||
|
Type: spec.ArrayType{
|
||||||
|
Value: spec.DefineStruct{
|
||||||
|
RawName: "ItemStruct",
|
||||||
|
Members: []spec.Member{
|
||||||
|
{
|
||||||
|
Name: "ItemName",
|
||||||
|
Type: spec.PrimitiveType{RawName: "string"},
|
||||||
|
Tag: `json:"itemName"`,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
Tag: `json:"arrayField"`,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
properties, _ := propertiesFromType(ctx, testStruct)
|
||||||
|
|
||||||
|
assert.Contains(t, properties, "arrayField")
|
||||||
|
arrayField := properties["arrayField"]
|
||||||
|
|
||||||
|
// Should be array type
|
||||||
|
assert.Equal(t, "array", arrayField.Type[0])
|
||||||
|
|
||||||
|
// Should have items with full schema, no $ref
|
||||||
|
assert.NotNil(t, arrayField.Items)
|
||||||
|
assert.NotNil(t, arrayField.Items.Schema)
|
||||||
|
|
||||||
|
// Should NOT have $ref at schema level
|
||||||
|
assert.Empty(t, arrayField.Ref.String(), "Schema should not have $ref when useDefinitions is false")
|
||||||
|
|
||||||
|
// Should NOT have $ref in items either
|
||||||
|
assert.Empty(t, arrayField.Items.Schema.Ref.String(), "Items should not have $ref when useDefinitions is false")
|
||||||
|
|
||||||
|
// Should have full schema properties in items
|
||||||
|
assert.Equal(t, "object", arrayField.Items.Schema.Type[0])
|
||||||
|
assert.Contains(t, arrayField.Items.Schema.Properties, "itemName")
|
||||||
|
assert.Equal(t, []string{"itemName"}, arrayField.Items.Schema.Required)
|
||||||
|
}
|
||||||
|
|||||||
163
tools/goctl/api/tsgen/gen_test.go
Normal file
163
tools/goctl/api/tsgen/gen_test.go
Normal file
@@ -0,0 +1,163 @@
|
|||||||
|
package tsgen
|
||||||
|
|
||||||
|
import (
|
||||||
|
"os"
|
||||||
|
"path/filepath"
|
||||||
|
"strings"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
|
"github.com/zeromicro/go-zero/tools/goctl/api/parser"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestGenWithInlineStructs(t *testing.T) {
|
||||||
|
// Create a temporary directory for the test
|
||||||
|
tmpDir := t.TempDir()
|
||||||
|
apiFile := filepath.Join(tmpDir, "test.api")
|
||||||
|
|
||||||
|
// Write the test API file
|
||||||
|
apiContent := `syntax = "v1"
|
||||||
|
|
||||||
|
info (
|
||||||
|
title: "Test ts generator"
|
||||||
|
desc: "Test inline struct handling"
|
||||||
|
author: "test"
|
||||||
|
version: "v1"
|
||||||
|
)
|
||||||
|
|
||||||
|
// common pagination request
|
||||||
|
type PaginationReq {
|
||||||
|
PageNum int ` + "`form:\"pageNum\"`" + `
|
||||||
|
PageSize int ` + "`form:\"pageSize\"`" + `
|
||||||
|
}
|
||||||
|
|
||||||
|
// base response
|
||||||
|
type BaseResp {
|
||||||
|
Code int64 ` + "`json:\"code\"`" + `
|
||||||
|
Msg string ` + "`json:\"msg\"`" + `
|
||||||
|
}
|
||||||
|
|
||||||
|
// common req
|
||||||
|
type GetListCommonReq {
|
||||||
|
Sth string ` + "`form:\"sth\"`" + `
|
||||||
|
PageNum int ` + "`form:\"pageNum\"`" + `
|
||||||
|
PageSize int ` + "`form:\"pageSize\"`" + `
|
||||||
|
}
|
||||||
|
|
||||||
|
// bad req to ts - inline struct with form tags
|
||||||
|
type GetListBadReq {
|
||||||
|
Sth string ` + "`form:\"sth\"`" + `
|
||||||
|
PaginationReq
|
||||||
|
}
|
||||||
|
|
||||||
|
// bad req to ts 2 - only inline struct with form tags
|
||||||
|
type GetListBad2Req {
|
||||||
|
PaginationReq
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetListResp - inline struct with json tags
|
||||||
|
type GetListResp {
|
||||||
|
BaseResp
|
||||||
|
}
|
||||||
|
|
||||||
|
service test-api {
|
||||||
|
@doc "common req"
|
||||||
|
@handler getListCommon
|
||||||
|
get /getListCommon (GetListCommonReq) returns (GetListResp)
|
||||||
|
|
||||||
|
@doc "bad req"
|
||||||
|
@handler getListBad
|
||||||
|
get /getListBad (GetListBadReq) returns (GetListResp)
|
||||||
|
|
||||||
|
@doc "bad req 2"
|
||||||
|
@handler getListBad2
|
||||||
|
get /getListBad2 (GetListBad2Req) returns (GetListResp)
|
||||||
|
|
||||||
|
@doc "no req"
|
||||||
|
@handler getListNoReq
|
||||||
|
get /getListNoReq returns (GetListResp)
|
||||||
|
}`
|
||||||
|
|
||||||
|
err := os.WriteFile(apiFile, []byte(apiContent), 0644)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
|
||||||
|
// Parse the API file
|
||||||
|
api, err := parser.Parse(apiFile)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
|
||||||
|
// Generate TypeScript files
|
||||||
|
outputDir := filepath.Join(tmpDir, "output")
|
||||||
|
err = os.MkdirAll(outputDir, 0755)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
|
||||||
|
// Generate the files directly
|
||||||
|
api.Service = api.Service.JoinPrefix()
|
||||||
|
err = genRequest(outputDir)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
err = genHandler(outputDir, ".", "webapi", api, false)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
err = genComponents(outputDir, api)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
|
||||||
|
// Read generated handler file
|
||||||
|
handlerFile := filepath.Join(outputDir, "test.ts")
|
||||||
|
handlerContent, err := os.ReadFile(handlerFile)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
handler := string(handlerContent)
|
||||||
|
|
||||||
|
// Read generated components file
|
||||||
|
componentsFile := filepath.Join(outputDir, "testComponents.ts")
|
||||||
|
componentsContent, err := os.ReadFile(componentsFile)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
components := string(componentsContent)
|
||||||
|
|
||||||
|
// Verify getListBad function signature and call
|
||||||
|
assert.Contains(t, handler, "export function getListBad(params: components.GetListBadReqParams)")
|
||||||
|
assert.Contains(t, handler, "return webapi.get<components.GetListResp>(`/getListBad`, params)")
|
||||||
|
// Should NOT contain 4 arguments
|
||||||
|
assert.NotContains(t, handler, "getListBad`, params, req, headers")
|
||||||
|
|
||||||
|
// Verify getListBad2 function signature and call
|
||||||
|
assert.Contains(t, handler, "export function getListBad2(params: components.GetListBad2ReqParams)")
|
||||||
|
assert.Contains(t, handler, "return webapi.get<components.GetListResp>(`/getListBad2`, params)")
|
||||||
|
// Should NOT reference non-existent headers
|
||||||
|
assert.NotContains(t, handler, "GetListBad2ReqHeaders")
|
||||||
|
|
||||||
|
// Verify getListCommon function signature and call
|
||||||
|
assert.Contains(t, handler, "export function getListCommon(params: components.GetListCommonReqParams)")
|
||||||
|
assert.Contains(t, handler, "return webapi.get<components.GetListResp>(`/getListCommon`, params)")
|
||||||
|
|
||||||
|
// Verify getListNoReq function signature and call
|
||||||
|
assert.Contains(t, handler, "export function getListNoReq()")
|
||||||
|
assert.Contains(t, handler, "return webapi.get<components.GetListResp>(`/getListNoReq`)")
|
||||||
|
|
||||||
|
// Verify GetListBadReqParams contains flattened fields
|
||||||
|
assert.Contains(t, components, "export interface GetListBadReqParams")
|
||||||
|
// Count occurrences of fields in GetListBadReqParams
|
||||||
|
paramsStart := strings.Index(components, "export interface GetListBadReqParams")
|
||||||
|
paramsEnd := strings.Index(components[paramsStart:], "}")
|
||||||
|
paramsSection := components[paramsStart : paramsStart+paramsEnd]
|
||||||
|
assert.Contains(t, paramsSection, "sth: string")
|
||||||
|
assert.Contains(t, paramsSection, "pageNum: number")
|
||||||
|
assert.Contains(t, paramsSection, "pageSize: number")
|
||||||
|
|
||||||
|
// Verify GetListBad2ReqParams contains flattened fields from inline PaginationReq
|
||||||
|
assert.Contains(t, components, "export interface GetListBad2ReqParams")
|
||||||
|
params2Start := strings.Index(components, "export interface GetListBad2ReqParams")
|
||||||
|
params2End := strings.Index(components[params2Start:], "}")
|
||||||
|
params2Section := components[params2Start : params2Start+params2End]
|
||||||
|
assert.Contains(t, params2Section, "pageNum: number")
|
||||||
|
assert.Contains(t, params2Section, "pageSize: number")
|
||||||
|
|
||||||
|
// Verify no empty Headers interfaces are generated
|
||||||
|
assert.NotContains(t, components, "GetListBadReqHeaders")
|
||||||
|
assert.NotContains(t, components, "GetListBad2ReqHeaders")
|
||||||
|
|
||||||
|
// Verify GetListResp contains flattened fields from BaseResp
|
||||||
|
assert.Contains(t, components, "export interface GetListResp")
|
||||||
|
respStart := strings.Index(components, "export interface GetListResp")
|
||||||
|
respEnd := strings.Index(components[respStart:], "}")
|
||||||
|
respSection := components[respStart : respStart+respEnd]
|
||||||
|
assert.Contains(t, respSection, "code: number")
|
||||||
|
assert.Contains(t, respSection, "msg: string")
|
||||||
|
}
|
||||||
@@ -212,7 +212,7 @@ func pathHasParams(route spec.Route) bool {
|
|||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
return len(ds.Members) != len(ds.GetBodyMembers())
|
return hasActualNonBodyMembers(ds)
|
||||||
}
|
}
|
||||||
|
|
||||||
func hasRequestBody(route spec.Route) bool {
|
func hasRequestBody(route spec.Route) bool {
|
||||||
@@ -221,7 +221,7 @@ func hasRequestBody(route spec.Route) bool {
|
|||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
return len(route.RequestTypeName()) > 0 && len(ds.GetBodyMembers()) > 0
|
return len(route.RequestTypeName()) > 0 && hasActualBodyMembers(ds)
|
||||||
}
|
}
|
||||||
|
|
||||||
func hasRequestPath(route spec.Route) bool {
|
func hasRequestPath(route spec.Route) bool {
|
||||||
@@ -230,7 +230,7 @@ func hasRequestPath(route spec.Route) bool {
|
|||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
return len(route.RequestTypeName()) > 0 && len(ds.GetTagMembers(pathTagKey)) > 0
|
return len(route.RequestTypeName()) > 0 && hasActualTagMembers(ds, pathTagKey)
|
||||||
}
|
}
|
||||||
|
|
||||||
func hasRequestHeader(route spec.Route) bool {
|
func hasRequestHeader(route spec.Route) bool {
|
||||||
@@ -239,5 +239,5 @@ func hasRequestHeader(route spec.Route) bool {
|
|||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
return len(route.RequestTypeName()) > 0 && len(ds.GetTagMembers(headerTagKey)) > 0
|
return len(route.RequestTypeName()) > 0 && hasActualTagMembers(ds, headerTagKey)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -164,13 +164,13 @@ func writeType(writer io.Writer, tp spec.Type) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func genParamsTypesIfNeed(writer io.Writer, tp spec.Type) error {
|
func genParamsTypesIfNeed(writer io.Writer, tp spec.Type) error {
|
||||||
definedType, ok := tp.(spec.DefineStruct)
|
_, ok := tp.(spec.DefineStruct)
|
||||||
if !ok {
|
if !ok {
|
||||||
return errors.New("no members of type " + tp.Name())
|
return errors.New("no members of type " + tp.Name())
|
||||||
}
|
}
|
||||||
|
|
||||||
members := definedType.GetNonBodyMembers()
|
// Check if there are actual non-body members (recursively through inline structs)
|
||||||
if len(members) == 0 {
|
if !hasActualNonBodyMembers(tp) {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -180,7 +180,7 @@ func genParamsTypesIfNeed(writer io.Writer, tp spec.Type) error {
|
|||||||
}
|
}
|
||||||
fmt.Fprintf(writer, "}\n")
|
fmt.Fprintf(writer, "}\n")
|
||||||
|
|
||||||
if len(definedType.GetTagMembers(headerTagKey)) > 0 {
|
if hasActualTagMembers(tp, headerTagKey) {
|
||||||
fmt.Fprintf(writer, "export interface %sHeaders {\n", util.Title(tp.Name()))
|
fmt.Fprintf(writer, "export interface %sHeaders {\n", util.Title(tp.Name()))
|
||||||
if err := writeTagMembers(writer, tp, headerTagKey); err != nil {
|
if err := writeTagMembers(writer, tp, headerTagKey); err != nil {
|
||||||
return err
|
return err
|
||||||
@@ -247,3 +247,87 @@ func writeTagMembers(writer io.Writer, tp spec.Type, tagKey string) error {
|
|||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// hasActualTagMembers checks if a type has actual members with the given tag,
|
||||||
|
// recursively checking inline/embedded structs
|
||||||
|
func hasActualTagMembers(tp spec.Type, tagKey string) bool {
|
||||||
|
definedType, ok := tp.(spec.DefineStruct)
|
||||||
|
if !ok {
|
||||||
|
pointType, ok := tp.(spec.PointerType)
|
||||||
|
if ok {
|
||||||
|
return hasActualTagMembers(pointType.Type, tagKey)
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, m := range definedType.Members {
|
||||||
|
if m.IsInline {
|
||||||
|
// Recursively check inline members
|
||||||
|
if hasActualTagMembers(m.Type, tagKey) {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// Check non-inline members for the tag
|
||||||
|
if m.IsTagMember(tagKey) {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
// hasActualBodyMembers checks if a type has actual body members (json tags),
|
||||||
|
// recursively checking inline/embedded structs
|
||||||
|
func hasActualBodyMembers(tp spec.Type) bool {
|
||||||
|
definedType, ok := tp.(spec.DefineStruct)
|
||||||
|
if !ok {
|
||||||
|
pointType, ok := tp.(spec.PointerType)
|
||||||
|
if ok {
|
||||||
|
return hasActualBodyMembers(pointType.Type)
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, m := range definedType.Members {
|
||||||
|
if m.IsInline {
|
||||||
|
// Recursively check inline members
|
||||||
|
if hasActualBodyMembers(m.Type) {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// Check non-inline members for json tag
|
||||||
|
if m.IsBodyMember() {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
// hasActualNonBodyMembers checks if a type has actual non-body members (form, path, header tags),
|
||||||
|
// recursively checking inline/embedded structs
|
||||||
|
func hasActualNonBodyMembers(tp spec.Type) bool {
|
||||||
|
definedType, ok := tp.(spec.DefineStruct)
|
||||||
|
if !ok {
|
||||||
|
pointType, ok := tp.(spec.PointerType)
|
||||||
|
if ok {
|
||||||
|
return hasActualNonBodyMembers(pointType.Type)
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, m := range definedType.Members {
|
||||||
|
if m.IsInline {
|
||||||
|
// Recursively check inline members
|
||||||
|
if hasActualNonBodyMembers(m.Type) {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// Check non-inline members for non-body tags
|
||||||
|
if !m.IsBodyMember() {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|||||||
@@ -37,3 +37,268 @@ func TestGenTsType(t *testing.T) {
|
|||||||
}
|
}
|
||||||
assert.Equal(t, `1 | 3 | 4 | 123`, ty)
|
assert.Equal(t, `1 | 3 | 4 | 123`, ty)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestHasActualTagMembers(t *testing.T) {
|
||||||
|
// Test with no members
|
||||||
|
emptyStruct := spec.DefineStruct{
|
||||||
|
RawName: "Empty",
|
||||||
|
Members: []spec.Member{},
|
||||||
|
}
|
||||||
|
assert.False(t, hasActualTagMembers(emptyStruct, "form"))
|
||||||
|
assert.False(t, hasActualTagMembers(emptyStruct, "header"))
|
||||||
|
|
||||||
|
// Test with direct form members
|
||||||
|
directFormStruct := spec.DefineStruct{
|
||||||
|
RawName: "DirectForm",
|
||||||
|
Members: []spec.Member{
|
||||||
|
{
|
||||||
|
Name: "Field1",
|
||||||
|
Type: spec.PrimitiveType{RawName: "string"},
|
||||||
|
Tag: `form:"field1"`,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
assert.True(t, hasActualTagMembers(directFormStruct, "form"))
|
||||||
|
assert.False(t, hasActualTagMembers(directFormStruct, "header"))
|
||||||
|
|
||||||
|
// Test with inline struct containing form members
|
||||||
|
inlineFormStruct := spec.DefineStruct{
|
||||||
|
RawName: "PaginationReq",
|
||||||
|
Members: []spec.Member{
|
||||||
|
{
|
||||||
|
Name: "PageNum",
|
||||||
|
Type: spec.PrimitiveType{RawName: "int"},
|
||||||
|
Tag: `form:"pageNum"`,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "PageSize",
|
||||||
|
Type: spec.PrimitiveType{RawName: "int"},
|
||||||
|
Tag: `form:"pageSize"`,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
parentStruct := spec.DefineStruct{
|
||||||
|
RawName: "ParentReq",
|
||||||
|
Members: []spec.Member{
|
||||||
|
{
|
||||||
|
Name: "",
|
||||||
|
Type: inlineFormStruct,
|
||||||
|
IsInline: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
assert.True(t, hasActualTagMembers(parentStruct, "form"))
|
||||||
|
assert.False(t, hasActualTagMembers(parentStruct, "header"))
|
||||||
|
|
||||||
|
// Test with both direct and inline members
|
||||||
|
mixedStruct := spec.DefineStruct{
|
||||||
|
RawName: "MixedReq",
|
||||||
|
Members: []spec.Member{
|
||||||
|
{
|
||||||
|
Name: "Sth",
|
||||||
|
Type: spec.PrimitiveType{RawName: "string"},
|
||||||
|
Tag: `form:"sth"`,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "",
|
||||||
|
Type: inlineFormStruct,
|
||||||
|
IsInline: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
assert.True(t, hasActualTagMembers(mixedStruct, "form"))
|
||||||
|
assert.False(t, hasActualTagMembers(mixedStruct, "header"))
|
||||||
|
|
||||||
|
// Test with inline struct containing only json members (body members)
|
||||||
|
inlineJsonStruct := spec.DefineStruct{
|
||||||
|
RawName: "JsonStruct",
|
||||||
|
Members: []spec.Member{
|
||||||
|
{
|
||||||
|
Name: "Code",
|
||||||
|
Type: spec.PrimitiveType{RawName: "int64"},
|
||||||
|
Tag: `json:"code"`,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "Msg",
|
||||||
|
Type: spec.PrimitiveType{RawName: "string"},
|
||||||
|
Tag: `json:"msg"`,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
parentJsonStruct := spec.DefineStruct{
|
||||||
|
RawName: "ParentResp",
|
||||||
|
Members: []spec.Member{
|
||||||
|
{
|
||||||
|
Name: "",
|
||||||
|
Type: inlineJsonStruct,
|
||||||
|
IsInline: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
assert.False(t, hasActualTagMembers(parentJsonStruct, "form"))
|
||||||
|
assert.False(t, hasActualTagMembers(parentJsonStruct, "header"))
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestHasActualBodyMembers(t *testing.T) {
|
||||||
|
// Test with no members
|
||||||
|
emptyStruct := spec.DefineStruct{
|
||||||
|
RawName: "Empty",
|
||||||
|
Members: []spec.Member{},
|
||||||
|
}
|
||||||
|
assert.False(t, hasActualBodyMembers(emptyStruct))
|
||||||
|
|
||||||
|
// Test with direct json members
|
||||||
|
directJsonStruct := spec.DefineStruct{
|
||||||
|
RawName: "DirectJson",
|
||||||
|
Members: []spec.Member{
|
||||||
|
{
|
||||||
|
Name: "Code",
|
||||||
|
Type: spec.PrimitiveType{RawName: "int64"},
|
||||||
|
Tag: `json:"code"`,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
assert.True(t, hasActualBodyMembers(directJsonStruct))
|
||||||
|
|
||||||
|
// Test with inline struct containing json members
|
||||||
|
inlineJsonStruct := spec.DefineStruct{
|
||||||
|
RawName: "BaseResp",
|
||||||
|
Members: []spec.Member{
|
||||||
|
{
|
||||||
|
Name: "Code",
|
||||||
|
Type: spec.PrimitiveType{RawName: "int64"},
|
||||||
|
Tag: `json:"code"`,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "Msg",
|
||||||
|
Type: spec.PrimitiveType{RawName: "string"},
|
||||||
|
Tag: `json:"msg"`,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
parentStruct := spec.DefineStruct{
|
||||||
|
RawName: "ParentResp",
|
||||||
|
Members: []spec.Member{
|
||||||
|
{
|
||||||
|
Name: "",
|
||||||
|
Type: inlineJsonStruct,
|
||||||
|
IsInline: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
assert.True(t, hasActualBodyMembers(parentStruct))
|
||||||
|
|
||||||
|
// Test with inline struct containing only form members (not body members)
|
||||||
|
inlineFormStruct := spec.DefineStruct{
|
||||||
|
RawName: "PaginationReq",
|
||||||
|
Members: []spec.Member{
|
||||||
|
{
|
||||||
|
Name: "PageNum",
|
||||||
|
Type: spec.PrimitiveType{RawName: "int"},
|
||||||
|
Tag: `form:"pageNum"`,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
parentFormStruct := spec.DefineStruct{
|
||||||
|
RawName: "ParentReq",
|
||||||
|
Members: []spec.Member{
|
||||||
|
{
|
||||||
|
Name: "",
|
||||||
|
Type: inlineFormStruct,
|
||||||
|
IsInline: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
assert.False(t, hasActualBodyMembers(parentFormStruct))
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestHasActualNonBodyMembers(t *testing.T) {
|
||||||
|
// Test with no members
|
||||||
|
emptyStruct := spec.DefineStruct{
|
||||||
|
RawName: "Empty",
|
||||||
|
Members: []spec.Member{},
|
||||||
|
}
|
||||||
|
assert.False(t, hasActualNonBodyMembers(emptyStruct))
|
||||||
|
|
||||||
|
// Test with direct form members
|
||||||
|
directFormStruct := spec.DefineStruct{
|
||||||
|
RawName: "DirectForm",
|
||||||
|
Members: []spec.Member{
|
||||||
|
{
|
||||||
|
Name: "Field1",
|
||||||
|
Type: spec.PrimitiveType{RawName: "string"},
|
||||||
|
Tag: `form:"field1"`,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
assert.True(t, hasActualNonBodyMembers(directFormStruct))
|
||||||
|
|
||||||
|
// Test with inline struct containing form members
|
||||||
|
inlineFormStruct := spec.DefineStruct{
|
||||||
|
RawName: "PaginationReq",
|
||||||
|
Members: []spec.Member{
|
||||||
|
{
|
||||||
|
Name: "PageNum",
|
||||||
|
Type: spec.PrimitiveType{RawName: "int"},
|
||||||
|
Tag: `form:"pageNum"`,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "PageSize",
|
||||||
|
Type: spec.PrimitiveType{RawName: "int"},
|
||||||
|
Tag: `form:"pageSize"`,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
parentStruct := spec.DefineStruct{
|
||||||
|
RawName: "ParentReq",
|
||||||
|
Members: []spec.Member{
|
||||||
|
{
|
||||||
|
Name: "",
|
||||||
|
Type: inlineFormStruct,
|
||||||
|
IsInline: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
assert.True(t, hasActualNonBodyMembers(parentStruct))
|
||||||
|
|
||||||
|
// Test with inline struct containing only json members (body members)
|
||||||
|
inlineJsonStruct := spec.DefineStruct{
|
||||||
|
RawName: "BaseResp",
|
||||||
|
Members: []spec.Member{
|
||||||
|
{
|
||||||
|
Name: "Code",
|
||||||
|
Type: spec.PrimitiveType{RawName: "int64"},
|
||||||
|
Tag: `json:"code"`,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
parentJsonStruct := spec.DefineStruct{
|
||||||
|
RawName: "ParentResp",
|
||||||
|
Members: []spec.Member{
|
||||||
|
{
|
||||||
|
Name: "",
|
||||||
|
Type: inlineJsonStruct,
|
||||||
|
IsInline: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
assert.False(t, hasActualNonBodyMembers(parentJsonStruct))
|
||||||
|
|
||||||
|
// Test with both direct and inline non-body members
|
||||||
|
mixedStruct := spec.DefineStruct{
|
||||||
|
RawName: "MixedReq",
|
||||||
|
Members: []spec.Member{
|
||||||
|
{
|
||||||
|
Name: "Sth",
|
||||||
|
Type: spec.PrimitiveType{RawName: "string"},
|
||||||
|
Tag: `form:"sth"`,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "",
|
||||||
|
Type: inlineFormStruct,
|
||||||
|
IsInline: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
assert.True(t, hasActualNonBodyMembers(mixedStruct))
|
||||||
|
}
|
||||||
|
|||||||
@@ -73,6 +73,7 @@ func dockerCommand(_ *cobra.Command, _ []string) (err error) {
|
|||||||
|
|
||||||
base := varStringBase
|
base := varStringBase
|
||||||
port := varIntPort
|
port := varIntPort
|
||||||
|
etcDir := filepath.Join(filepath.Dir(goFile), etcDir)
|
||||||
if _, err := os.Stat(etcDir); os.IsNotExist(err) {
|
if _, err := os.Stat(etcDir); os.IsNotExist(err) {
|
||||||
return generateDockerfile(goFile, base, port, version, timezone)
|
return generateDockerfile(goFile, base, port, version, timezone)
|
||||||
}
|
}
|
||||||
@@ -170,7 +171,7 @@ func generateDockerfile(goFile, base string, port int, version, timezone string,
|
|||||||
t := template.Must(template.New("dockerfile").Parse(text))
|
t := template.Must(template.New("dockerfile").Parse(text))
|
||||||
return t.Execute(out, Docker{
|
return t.Execute(out, Docker{
|
||||||
Chinese: env.InChina(),
|
Chinese: env.InChina(),
|
||||||
GoMainFrom: path.Join(projPath, goFile),
|
GoMainFrom: path.Join(projPath, filepath.Base(goFile)),
|
||||||
GoRelPath: projPath,
|
GoRelPath: projPath,
|
||||||
GoFile: goFile,
|
GoFile: goFile,
|
||||||
ExeFile: exeName,
|
ExeFile: exeName,
|
||||||
|
|||||||
376
tools/goctl/docker/docker_test.go
Normal file
376
tools/goctl/docker/docker_test.go
Normal file
@@ -0,0 +1,376 @@
|
|||||||
|
package docker
|
||||||
|
|
||||||
|
import (
|
||||||
|
"os"
|
||||||
|
"path/filepath"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
|
"github.com/stretchr/testify/require"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestDockerCommand_EtcDirResolution(t *testing.T) {
|
||||||
|
// Create a temporary project structure
|
||||||
|
tempDir := t.TempDir()
|
||||||
|
|
||||||
|
// Create project structure: project/service/api/
|
||||||
|
serviceDir := filepath.Join(tempDir, "service", "api")
|
||||||
|
etcDir := filepath.Join(serviceDir, "etc")
|
||||||
|
require.NoError(t, os.MkdirAll(etcDir, 0755))
|
||||||
|
|
||||||
|
// Create a Go file
|
||||||
|
goFile := filepath.Join(serviceDir, "api.go")
|
||||||
|
require.NoError(t, os.WriteFile(goFile, []byte("package main\n\nfunc main() {}"), 0644))
|
||||||
|
|
||||||
|
// Create a config file
|
||||||
|
configFile := filepath.Join(etcDir, "config.yaml")
|
||||||
|
require.NoError(t, os.WriteFile(configFile, []byte("Name: test\n"), 0644))
|
||||||
|
|
||||||
|
// Create go.mod at the root
|
||||||
|
goModFile := filepath.Join(tempDir, "go.mod")
|
||||||
|
require.NoError(t, os.WriteFile(goModFile, []byte("module test\n\ngo 1.21\n"), 0644))
|
||||||
|
|
||||||
|
// Test: etc directory should be found relative to Go file, not CWD
|
||||||
|
t.Run("etc directory resolved relative to go file", func(t *testing.T) {
|
||||||
|
// Save and restore original working directory
|
||||||
|
originalWd, err := os.Getwd()
|
||||||
|
require.NoError(t, err)
|
||||||
|
defer func() {
|
||||||
|
require.NoError(t, os.Chdir(originalWd))
|
||||||
|
}()
|
||||||
|
|
||||||
|
// Change to temp directory (not service/api directory)
|
||||||
|
require.NoError(t, os.Chdir(tempDir))
|
||||||
|
|
||||||
|
// The relative path from tempDir to the go file
|
||||||
|
relGoFile := filepath.Join("service", "api", "api.go")
|
||||||
|
|
||||||
|
// Test the etc directory resolution logic
|
||||||
|
resolvedEtcDir := filepath.Join(filepath.Dir(relGoFile), "etc")
|
||||||
|
|
||||||
|
// Verify the resolved path exists
|
||||||
|
_, err = os.Stat(resolvedEtcDir)
|
||||||
|
assert.NoError(t, err, "etc directory should be found at service/api/etc")
|
||||||
|
|
||||||
|
// Verify it's the correct path (use EvalSymlinks to handle /private on macOS)
|
||||||
|
absResolvedEtc, err := filepath.Abs(resolvedEtcDir)
|
||||||
|
require.NoError(t, err)
|
||||||
|
absResolvedEtc, err = filepath.EvalSymlinks(absResolvedEtc)
|
||||||
|
require.NoError(t, err)
|
||||||
|
expectedEtc, err := filepath.EvalSymlinks(etcDir)
|
||||||
|
require.NoError(t, err)
|
||||||
|
assert.Equal(t, expectedEtc, absResolvedEtc)
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("etc directory with empty goFile", func(t *testing.T) {
|
||||||
|
// When goFile is empty, should default to "./etc"
|
||||||
|
goFile := ""
|
||||||
|
resolvedEtcDir := filepath.Join(filepath.Dir(goFile), "etc")
|
||||||
|
|
||||||
|
// Should resolve to just "etc"
|
||||||
|
assert.Equal(t, "etc", resolvedEtcDir)
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("etc directory with absolute path", func(t *testing.T) {
|
||||||
|
// When goFile is absolute path
|
||||||
|
absGoFile := filepath.Join(tempDir, "service", "api", "api.go")
|
||||||
|
resolvedEtcDir := filepath.Join(filepath.Dir(absGoFile), "etc")
|
||||||
|
|
||||||
|
// Should resolve correctly
|
||||||
|
_, err := os.Stat(resolvedEtcDir)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestGenerateDockerfile_GoMainFromPath(t *testing.T) {
|
||||||
|
tests := []struct {
|
||||||
|
name string
|
||||||
|
goFile string
|
||||||
|
projPath string
|
||||||
|
expectedPath string
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
name: "relative path with subdirectory",
|
||||||
|
goFile: "service/api/api.go",
|
||||||
|
projPath: "service/api",
|
||||||
|
expectedPath: "service/api/api.go",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "simple filename",
|
||||||
|
goFile: "main.go",
|
||||||
|
projPath: ".",
|
||||||
|
expectedPath: "main.go",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "nested service path",
|
||||||
|
goFile: "internal/service/user/user.go",
|
||||||
|
projPath: "internal/service/user",
|
||||||
|
expectedPath: "internal/service/user/user.go",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "deep nested path",
|
||||||
|
goFile: "cmd/api/internal/handler/handler.go",
|
||||||
|
projPath: "cmd/api/internal/handler",
|
||||||
|
expectedPath: "cmd/api/internal/handler/handler.go",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, tt := range tests {
|
||||||
|
t.Run(tt.name, func(t *testing.T) {
|
||||||
|
// Simulate the fix: using filepath.Base instead of full path
|
||||||
|
goMainFrom := filepath.Join(tt.projPath, filepath.Base(tt.goFile))
|
||||||
|
|
||||||
|
assert.Equal(t, tt.expectedPath, goMainFrom,
|
||||||
|
"GoMainFrom should not duplicate path segments")
|
||||||
|
|
||||||
|
// Verify the old buggy behavior would have been wrong
|
||||||
|
if tt.goFile != filepath.Base(tt.goFile) {
|
||||||
|
buggyPath := filepath.Join(tt.projPath, tt.goFile)
|
||||||
|
assert.NotEqual(t, tt.expectedPath, buggyPath,
|
||||||
|
"Old implementation would have created incorrect path")
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestGenerateDockerfile_PathJoinBehavior(t *testing.T) {
|
||||||
|
t.Run("demonstrates the bug and fix", func(t *testing.T) {
|
||||||
|
projPath := "service/api"
|
||||||
|
goFile := "service/api/api.go"
|
||||||
|
|
||||||
|
// OLD (buggy) behavior: path duplication
|
||||||
|
buggyPath := filepath.Join(projPath, goFile)
|
||||||
|
assert.Equal(t, "service/api/service/api/api.go", buggyPath,
|
||||||
|
"Bug: path segments are duplicated")
|
||||||
|
|
||||||
|
// NEW (fixed) behavior: correct path
|
||||||
|
fixedPath := filepath.Join(projPath, filepath.Base(goFile))
|
||||||
|
assert.Equal(t, "service/api/api.go", fixedPath,
|
||||||
|
"Fix: using filepath.Base prevents duplication")
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestFindConfig(t *testing.T) {
|
||||||
|
tempDir := t.TempDir()
|
||||||
|
etcDir := filepath.Join(tempDir, "etc")
|
||||||
|
require.NoError(t, os.MkdirAll(etcDir, 0755))
|
||||||
|
|
||||||
|
t.Run("finds config matching go file name", func(t *testing.T) {
|
||||||
|
// Create config files
|
||||||
|
require.NoError(t, os.WriteFile(
|
||||||
|
filepath.Join(etcDir, "api.yaml"), []byte("test"), 0644))
|
||||||
|
require.NoError(t, os.WriteFile(
|
||||||
|
filepath.Join(etcDir, "other.yaml"), []byte("test"), 0644))
|
||||||
|
|
||||||
|
cfg, err := findConfig("api.go", etcDir)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
assert.Equal(t, "api.yaml", cfg)
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("returns first config when no match", func(t *testing.T) {
|
||||||
|
etcDir2 := filepath.Join(tempDir, "etc2")
|
||||||
|
require.NoError(t, os.MkdirAll(etcDir2, 0755))
|
||||||
|
require.NoError(t, os.WriteFile(
|
||||||
|
filepath.Join(etcDir2, "config.yaml"), []byte("test"), 0644))
|
||||||
|
|
||||||
|
cfg, err := findConfig("main.go", etcDir2)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
assert.Equal(t, "config.yaml", cfg)
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("returns error when no yaml files", func(t *testing.T) {
|
||||||
|
emptyDir := filepath.Join(tempDir, "empty")
|
||||||
|
require.NoError(t, os.MkdirAll(emptyDir, 0755))
|
||||||
|
|
||||||
|
_, err := findConfig("api.go", emptyDir)
|
||||||
|
assert.Error(t, err)
|
||||||
|
assert.Contains(t, err.Error(), "no yaml file")
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("handles path in go file name", func(t *testing.T) {
|
||||||
|
// Test with service/api/api.go - should extract just "api"
|
||||||
|
cfg, err := findConfig("service/api/api.go", etcDir)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
assert.Equal(t, "api.yaml", cfg)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestGetFilePath(t *testing.T) {
|
||||||
|
// Create a temporary directory with go.mod
|
||||||
|
tempDir := t.TempDir()
|
||||||
|
require.NoError(t, os.WriteFile(
|
||||||
|
filepath.Join(tempDir, "go.mod"),
|
||||||
|
[]byte("module testproject\n\ngo 1.21\n"),
|
||||||
|
0644,
|
||||||
|
))
|
||||||
|
|
||||||
|
// Create subdirectories
|
||||||
|
serviceDir := filepath.Join(tempDir, "service", "api")
|
||||||
|
require.NoError(t, os.MkdirAll(serviceDir, 0755))
|
||||||
|
|
||||||
|
originalWd, err := os.Getwd()
|
||||||
|
require.NoError(t, err)
|
||||||
|
defer func() {
|
||||||
|
require.NoError(t, os.Chdir(originalWd))
|
||||||
|
}()
|
||||||
|
|
||||||
|
t.Run("returns relative path from go.mod", func(t *testing.T) {
|
||||||
|
require.NoError(t, os.Chdir(tempDir))
|
||||||
|
|
||||||
|
path, err := getFilePath("service/api")
|
||||||
|
assert.NoError(t, err)
|
||||||
|
assert.Equal(t, "service/api", path)
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("handles current directory", func(t *testing.T) {
|
||||||
|
require.NoError(t, os.Chdir(tempDir))
|
||||||
|
|
||||||
|
path, err := getFilePath(".")
|
||||||
|
assert.NoError(t, err)
|
||||||
|
// Current directory returns empty string when at go.mod root
|
||||||
|
assert.True(t, path == "." || path == "")
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// Integration test to verify the complete fix
|
||||||
|
func TestDockerCommandIntegration(t *testing.T) {
|
||||||
|
// Create a complete project structure
|
||||||
|
tempDir := t.TempDir()
|
||||||
|
|
||||||
|
// Setup: project/service/api/
|
||||||
|
serviceDir := filepath.Join(tempDir, "service", "api")
|
||||||
|
etcDir := filepath.Join(serviceDir, "etc")
|
||||||
|
require.NoError(t, os.MkdirAll(etcDir, 0755))
|
||||||
|
|
||||||
|
// Create files
|
||||||
|
goFile := filepath.Join(serviceDir, "api.go")
|
||||||
|
require.NoError(t, os.WriteFile(goFile, []byte("package main\n\nfunc main() {}"), 0644))
|
||||||
|
configFile := filepath.Join(etcDir, "api.yaml")
|
||||||
|
require.NoError(t, os.WriteFile(configFile, []byte("Name: test-api\n"), 0644))
|
||||||
|
goModFile := filepath.Join(tempDir, "go.mod")
|
||||||
|
require.NoError(t, os.WriteFile(goModFile, []byte("module testproject\n\ngo 1.21\n"), 0644))
|
||||||
|
goSumFile := filepath.Join(tempDir, "go.sum")
|
||||||
|
require.NoError(t, os.WriteFile(goSumFile, []byte(""), 0644))
|
||||||
|
|
||||||
|
originalWd, err := os.Getwd()
|
||||||
|
require.NoError(t, err)
|
||||||
|
defer func() {
|
||||||
|
require.NoError(t, os.Chdir(originalWd))
|
||||||
|
}()
|
||||||
|
|
||||||
|
t.Run("etc directory detected from different working directory", func(t *testing.T) {
|
||||||
|
// Change to project root (not service/api)
|
||||||
|
require.NoError(t, os.Chdir(tempDir))
|
||||||
|
|
||||||
|
// Relative path to Go file
|
||||||
|
relGoFile := filepath.Join("service", "api", "api.go")
|
||||||
|
|
||||||
|
// Apply the fix: resolve etc directory relative to go file
|
||||||
|
resolvedEtcDir := filepath.Join(filepath.Dir(relGoFile), "etc")
|
||||||
|
|
||||||
|
// Verify etc directory is found
|
||||||
|
stat, err := os.Stat(resolvedEtcDir)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
assert.True(t, stat.IsDir())
|
||||||
|
|
||||||
|
// Verify config can be found
|
||||||
|
cfg, err := findConfig(relGoFile, resolvedEtcDir)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
assert.Equal(t, "api.yaml", cfg)
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("GoMainFrom path is correct", func(t *testing.T) {
|
||||||
|
require.NoError(t, os.Chdir(tempDir))
|
||||||
|
|
||||||
|
goFileRel := filepath.Join("service", "api", "api.go")
|
||||||
|
|
||||||
|
// Simulate getFilePath return value
|
||||||
|
projPath := "service/api"
|
||||||
|
|
||||||
|
// Apply the fix: use filepath.Base
|
||||||
|
goMainFrom := filepath.Join(projPath, filepath.Base(goFileRel))
|
||||||
|
|
||||||
|
assert.Equal(t, "service/api/api.go", goMainFrom)
|
||||||
|
|
||||||
|
// Verify no path duplication
|
||||||
|
assert.NotContains(t, goMainFrom, "service/api/service/api")
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// Test that specifically validates the bug described in PR #4343
|
||||||
|
func TestPR4343_BugFixes(t *testing.T) {
|
||||||
|
t.Run("Bug 1: etc directory check uses correct base path", func(t *testing.T) {
|
||||||
|
// Setup: Create a project structure where etc is NOT in CWD but IS relative to Go file
|
||||||
|
tempDir := t.TempDir()
|
||||||
|
serviceDir := filepath.Join(tempDir, "service", "api")
|
||||||
|
etcDir := filepath.Join(serviceDir, "etc")
|
||||||
|
require.NoError(t, os.MkdirAll(etcDir, 0755))
|
||||||
|
|
||||||
|
// Create a config file
|
||||||
|
require.NoError(t, os.WriteFile(
|
||||||
|
filepath.Join(etcDir, "config.yaml"),
|
||||||
|
[]byte("Name: test\n"),
|
||||||
|
0644,
|
||||||
|
))
|
||||||
|
|
||||||
|
originalWd, err := os.Getwd()
|
||||||
|
require.NoError(t, err)
|
||||||
|
defer func() {
|
||||||
|
require.NoError(t, os.Chdir(originalWd))
|
||||||
|
}()
|
||||||
|
|
||||||
|
// Change to project root (CWD = tempDir)
|
||||||
|
require.NoError(t, os.Chdir(tempDir))
|
||||||
|
|
||||||
|
goFile := filepath.Join("service", "api", "api.go")
|
||||||
|
|
||||||
|
// OLD (buggy) behavior: checks for "etc" in CWD
|
||||||
|
_, errOld := os.Stat("etc")
|
||||||
|
assert.Error(t, errOld, "Bug: etc not found in CWD")
|
||||||
|
|
||||||
|
// NEW (fixed) behavior: checks for "etc" relative to go file
|
||||||
|
etcDirResolved := filepath.Join(filepath.Dir(goFile), "etc")
|
||||||
|
stat, errNew := os.Stat(etcDirResolved)
|
||||||
|
assert.NoError(t, errNew, "Fix: etc found relative to go file")
|
||||||
|
assert.True(t, stat.IsDir())
|
||||||
|
|
||||||
|
// Verify config is accessible
|
||||||
|
cfg, err := findConfig(goFile, etcDirResolved)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
assert.Equal(t, "config.yaml", cfg)
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("Bug 2: GoMainFrom path not duplicated", func(t *testing.T) {
|
||||||
|
// Test case from PR description
|
||||||
|
projPath := "service/api"
|
||||||
|
goFile := "service/api/api.go"
|
||||||
|
|
||||||
|
// OLD (buggy) behavior: duplicates path
|
||||||
|
buggyPath := filepath.Join(projPath, goFile)
|
||||||
|
assert.Equal(t, "service/api/service/api/api.go", buggyPath,
|
||||||
|
"Bug: path duplication occurs with old implementation")
|
||||||
|
|
||||||
|
// NEW (fixed) behavior: correct path using filepath.Base
|
||||||
|
fixedPath := filepath.Join(projPath, filepath.Base(goFile))
|
||||||
|
assert.Equal(t, "service/api/api.go", fixedPath,
|
||||||
|
"Fix: using filepath.Base() prevents path duplication")
|
||||||
|
|
||||||
|
// Verify the fix works for various scenarios
|
||||||
|
testCases := []struct {
|
||||||
|
projPath string
|
||||||
|
goFile string
|
||||||
|
expected string
|
||||||
|
}{
|
||||||
|
{"service/api", "service/api/api.go", "service/api/api.go"},
|
||||||
|
{"cmd/server", "cmd/server/main.go", "cmd/server/main.go"},
|
||||||
|
{"internal/handler", "internal/handler/handler.go", "internal/handler/handler.go"},
|
||||||
|
{".", "main.go", "main.go"},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, tc := range testCases {
|
||||||
|
result := filepath.Join(tc.projPath, filepath.Base(tc.goFile))
|
||||||
|
assert.Equal(t, tc.expected, result,
|
||||||
|
"Fix should work for projPath=%s, goFile=%s", tc.projPath, tc.goFile)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
@@ -8,15 +8,15 @@ require (
|
|||||||
github.com/fatih/structtag v1.2.0
|
github.com/fatih/structtag v1.2.0
|
||||||
github.com/go-openapi/spec v0.21.1-0.20250328170532-a3928469592e
|
github.com/go-openapi/spec v0.21.1-0.20250328170532-a3928469592e
|
||||||
github.com/go-sql-driver/mysql v1.9.0
|
github.com/go-sql-driver/mysql v1.9.0
|
||||||
github.com/gookit/color v1.5.4
|
github.com/gookit/color v1.6.0
|
||||||
github.com/iancoleman/strcase v0.3.0
|
github.com/iancoleman/strcase v0.3.0
|
||||||
github.com/spf13/cobra v1.9.1
|
github.com/spf13/cobra v1.10.1
|
||||||
github.com/spf13/pflag v1.0.7
|
github.com/spf13/pflag v1.0.10
|
||||||
github.com/stretchr/testify v1.10.0
|
github.com/stretchr/testify v1.11.1
|
||||||
github.com/withfig/autocomplete-tools/integrations/cobra v1.2.1
|
github.com/withfig/autocomplete-tools/integrations/cobra v1.2.1
|
||||||
github.com/zeromicro/antlr v0.0.1
|
github.com/zeromicro/antlr v0.0.1
|
||||||
github.com/zeromicro/ddl-parser v1.0.5
|
github.com/zeromicro/ddl-parser v1.0.5
|
||||||
github.com/zeromicro/go-zero v1.8.5
|
github.com/zeromicro/go-zero v1.9.2
|
||||||
golang.org/x/text v0.22.0
|
golang.org/x/text v0.22.0
|
||||||
google.golang.org/grpc v1.65.0
|
google.golang.org/grpc v1.65.0
|
||||||
google.golang.org/protobuf v1.36.5
|
google.golang.org/protobuf v1.36.5
|
||||||
@@ -42,14 +42,13 @@ require (
|
|||||||
github.com/go-openapi/jsonreference v0.21.0 // indirect
|
github.com/go-openapi/jsonreference v0.21.0 // indirect
|
||||||
github.com/go-openapi/swag v0.23.1 // indirect
|
github.com/go-openapi/swag v0.23.1 // indirect
|
||||||
github.com/gogo/protobuf v1.3.2 // indirect
|
github.com/gogo/protobuf v1.3.2 // indirect
|
||||||
github.com/golang/mock v1.6.0 // indirect
|
|
||||||
github.com/golang/protobuf v1.5.4 // indirect
|
github.com/golang/protobuf v1.5.4 // indirect
|
||||||
github.com/google/gnostic-models v0.6.8 // indirect
|
github.com/google/gnostic-models v0.6.8 // indirect
|
||||||
github.com/google/go-cmp v0.6.0 // indirect
|
github.com/google/go-cmp v0.6.0 // indirect
|
||||||
github.com/google/gofuzz v1.2.0 // indirect
|
github.com/google/gofuzz v1.2.0 // indirect
|
||||||
github.com/google/uuid v1.6.0 // indirect
|
github.com/google/uuid v1.6.0 // indirect
|
||||||
github.com/grafana/pyroscope-go v1.2.2 // indirect
|
github.com/grafana/pyroscope-go v1.2.7 // indirect
|
||||||
github.com/grafana/pyroscope-go/godeltaprof v0.1.8 // indirect
|
github.com/grafana/pyroscope-go/godeltaprof v0.1.9 // indirect
|
||||||
github.com/grpc-ecosystem/grpc-gateway/v2 v2.20.0 // indirect
|
github.com/grpc-ecosystem/grpc-gateway/v2 v2.20.0 // indirect
|
||||||
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
||||||
github.com/jackc/pgpassfile v1.0.0 // indirect
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
||||||
@@ -73,9 +72,9 @@ require (
|
|||||||
github.com/prometheus/client_model v0.6.1 // indirect
|
github.com/prometheus/client_model v0.6.1 // indirect
|
||||||
github.com/prometheus/common v0.62.0 // indirect
|
github.com/prometheus/common v0.62.0 // indirect
|
||||||
github.com/prometheus/procfs v0.15.1 // indirect
|
github.com/prometheus/procfs v0.15.1 // indirect
|
||||||
github.com/redis/go-redis/v9 v9.11.0 // indirect
|
github.com/redis/go-redis/v9 v9.15.0 // indirect
|
||||||
github.com/spaolacci/murmur3 v1.1.0 // indirect
|
github.com/spaolacci/murmur3 v1.1.0 // indirect
|
||||||
github.com/xo/terminfo v0.0.0-20210125001918-ca9a967f8778 // indirect
|
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
|
||||||
github.com/yuin/gopher-lua v1.1.1 // indirect
|
github.com/yuin/gopher-lua v1.1.1 // indirect
|
||||||
go.etcd.io/etcd/api/v3 v3.5.15 // indirect
|
go.etcd.io/etcd/api/v3 v3.5.15 // indirect
|
||||||
go.etcd.io/etcd/client/pkg/v3 v3.5.15 // indirect
|
go.etcd.io/etcd/client/pkg/v3 v3.5.15 // indirect
|
||||||
@@ -93,6 +92,7 @@ require (
|
|||||||
go.opentelemetry.io/proto/otlp v1.3.1 // indirect
|
go.opentelemetry.io/proto/otlp v1.3.1 // indirect
|
||||||
go.uber.org/atomic v1.10.0 // indirect
|
go.uber.org/atomic v1.10.0 // indirect
|
||||||
go.uber.org/automaxprocs v1.6.0 // indirect
|
go.uber.org/automaxprocs v1.6.0 // indirect
|
||||||
|
go.uber.org/mock v0.4.0 // indirect
|
||||||
go.uber.org/multierr v1.9.0 // indirect
|
go.uber.org/multierr v1.9.0 // indirect
|
||||||
go.uber.org/zap v1.24.0 // indirect
|
go.uber.org/zap v1.24.0 // indirect
|
||||||
golang.org/x/crypto v0.33.0 // indirect
|
golang.org/x/crypto v0.33.0 // indirect
|
||||||
|
|||||||
@@ -57,8 +57,6 @@ github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572/go.mod h1:9Pwr4
|
|||||||
github.com/godbus/dbus/v5 v5.0.4/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA=
|
github.com/godbus/dbus/v5 v5.0.4/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA=
|
||||||
github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q=
|
github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q=
|
||||||
github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q=
|
github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q=
|
||||||
github.com/golang/mock v1.6.0 h1:ErTB+efbowRARo13NNdxyJji2egdxLGQhRaY+DUumQc=
|
|
||||||
github.com/golang/mock v1.6.0/go.mod h1:p6yTPP+5HYm5mzsMV8JkE6ZKdX+/wYM6Hr+LicevLPs=
|
|
||||||
github.com/golang/protobuf v1.5.4 h1:i7eJL8qZTpSEXOPTxNKhASYpMn+8e5Q6AdndVa1dWek=
|
github.com/golang/protobuf v1.5.4 h1:i7eJL8qZTpSEXOPTxNKhASYpMn+8e5Q6AdndVa1dWek=
|
||||||
github.com/golang/protobuf v1.5.4/go.mod h1:lnTiLA8Wa4RWRcIUkrtSVa5nRhsEGBg48fD6rSs7xps=
|
github.com/golang/protobuf v1.5.4/go.mod h1:lnTiLA8Wa4RWRcIUkrtSVa5nRhsEGBg48fD6rSs7xps=
|
||||||
github.com/google/gnostic-models v0.6.8 h1:yo/ABAfM5IMRsS1VnXjTBvUb61tFIHozhlYvRgGre9I=
|
github.com/google/gnostic-models v0.6.8 h1:yo/ABAfM5IMRsS1VnXjTBvUb61tFIHozhlYvRgGre9I=
|
||||||
@@ -73,12 +71,14 @@ github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1 h1:K6RDEckDVWvDI9JAJY
|
|||||||
github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE=
|
github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE=
|
||||||
github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
|
github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
|
||||||
github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
|
github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
|
||||||
github.com/gookit/color v1.5.4 h1:FZmqs7XOyGgCAxmWyPslpiok1k05wmY3SJTytgvYFs0=
|
github.com/gookit/assert v0.1.1 h1:lh3GcawXe/p+cU7ESTZ5Ui3Sm/x8JWpIis4/1aF0mY0=
|
||||||
github.com/gookit/color v1.5.4/go.mod h1:pZJOeOS8DM43rXbp4AZo1n9zCU2qjpcRko0b6/QJi9w=
|
github.com/gookit/assert v0.1.1/go.mod h1:jS5bmIVQZTIwk42uXl4lyj4iaaxx32tqH16CFj0VX2E=
|
||||||
github.com/grafana/pyroscope-go v1.2.2 h1:uvKCyZMD724RkaCEMrSTC38Yn7AnFe8S2wiAIYdDPCE=
|
github.com/gookit/color v1.6.0 h1:JjJXBTk1ETNyqyilJhkTXJYYigHG24TM9Xa2M1xAhRA=
|
||||||
github.com/grafana/pyroscope-go v1.2.2/go.mod h1:zzT9QXQAp2Iz2ZdS216UiV8y9uXJYQiGE1q8v1FyhqU=
|
github.com/gookit/color v1.6.0/go.mod h1:9ACFc7/1IpHGBW8RwuDm/0YEnhg3dwwXpoMsmtyHfjs=
|
||||||
github.com/grafana/pyroscope-go/godeltaprof v0.1.8 h1:iwOtYXeeVSAeYefJNaxDytgjKtUuKQbJqgAIjlnicKg=
|
github.com/grafana/pyroscope-go v1.2.7 h1:VWBBlqxjyR0Cwk2W6UrE8CdcdD80GOFNutj0Kb1T8ac=
|
||||||
github.com/grafana/pyroscope-go/godeltaprof v0.1.8/go.mod h1:2+l7K7twW49Ct4wFluZD3tZ6e0SjanjcUUBPVD/UuGU=
|
github.com/grafana/pyroscope-go v1.2.7/go.mod h1:o/bpSLiJYYP6HQtvcoVKiE9s5RiNgjYTj1DhiddP2Pc=
|
||||||
|
github.com/grafana/pyroscope-go/godeltaprof v0.1.9 h1:c1Us8i6eSmkW+Ez05d3co8kasnuOY813tbMN8i/a3Og=
|
||||||
|
github.com/grafana/pyroscope-go/godeltaprof v0.1.9/go.mod h1:2+l7K7twW49Ct4wFluZD3tZ6e0SjanjcUUBPVD/UuGU=
|
||||||
github.com/grpc-ecosystem/grpc-gateway/v2 v2.20.0 h1:bkypFPDjIYGfCYD5mRBvpqxfYX1YCS1PXdKYWi8FsN0=
|
github.com/grpc-ecosystem/grpc-gateway/v2 v2.20.0 h1:bkypFPDjIYGfCYD5mRBvpqxfYX1YCS1PXdKYWi8FsN0=
|
||||||
github.com/grpc-ecosystem/grpc-gateway/v2 v2.20.0/go.mod h1:P+Lt/0by1T8bfcF3z737NnSbmxQAppXMRziHUxPOC8k=
|
github.com/grpc-ecosystem/grpc-gateway/v2 v2.20.0/go.mod h1:P+Lt/0by1T8bfcF3z737NnSbmxQAppXMRziHUxPOC8k=
|
||||||
github.com/h2non/parth v0.0.0-20190131123155-b4df798d6542 h1:2VTzZjLZBgl62/EtslCrtky5vbi9dd7HrQPQIx6wqiw=
|
github.com/h2non/parth v0.0.0-20190131123155-b4df798d6542 h1:2VTzZjLZBgl62/EtslCrtky5vbi9dd7HrQPQIx6wqiw=
|
||||||
@@ -148,18 +148,18 @@ github.com/prometheus/common v0.62.0 h1:xasJaQlnWAeyHdUBeGjXmutelfJHWMRr+Fg4QszZ
|
|||||||
github.com/prometheus/common v0.62.0/go.mod h1:vyBcEuLSvWos9B1+CyL7JZ2up+uFzXhkqml0W5zIY1I=
|
github.com/prometheus/common v0.62.0/go.mod h1:vyBcEuLSvWos9B1+CyL7JZ2up+uFzXhkqml0W5zIY1I=
|
||||||
github.com/prometheus/procfs v0.15.1 h1:YagwOFzUgYfKKHX6Dr+sHT7km/hxC76UB0learggepc=
|
github.com/prometheus/procfs v0.15.1 h1:YagwOFzUgYfKKHX6Dr+sHT7km/hxC76UB0learggepc=
|
||||||
github.com/prometheus/procfs v0.15.1/go.mod h1:fB45yRUv8NstnjriLhBQLuOUt+WW4BsoGhij/e3PBqk=
|
github.com/prometheus/procfs v0.15.1/go.mod h1:fB45yRUv8NstnjriLhBQLuOUt+WW4BsoGhij/e3PBqk=
|
||||||
github.com/redis/go-redis/v9 v9.11.0 h1:E3S08Gl/nJNn5vkxd2i78wZxWAPNZgUNTp8WIJUAiIs=
|
github.com/redis/go-redis/v9 v9.15.0 h1:2jdes0xJxer4h3NUZrZ4OGSntGlXp4WbXju2nOTRXto=
|
||||||
github.com/redis/go-redis/v9 v9.11.0/go.mod h1:huWgSWd8mW6+m0VPhJjSSQ+d6Nh1VICQ6Q5lHuCH/Iw=
|
github.com/redis/go-redis/v9 v9.15.0/go.mod h1:huWgSWd8mW6+m0VPhJjSSQ+d6Nh1VICQ6Q5lHuCH/Iw=
|
||||||
github.com/rogpeppe/go-internal v1.11.0 h1:cWPaGQEPrBb5/AsnsZesgZZ9yb1OQ+GOISoDNXVBh4M=
|
github.com/rogpeppe/go-internal v1.11.0 h1:cWPaGQEPrBb5/AsnsZesgZZ9yb1OQ+GOISoDNXVBh4M=
|
||||||
github.com/rogpeppe/go-internal v1.11.0/go.mod h1:ddIwULY96R17DhadqLgMfk9H9tvdUzkipdSkR5nkCZA=
|
github.com/rogpeppe/go-internal v1.11.0/go.mod h1:ddIwULY96R17DhadqLgMfk9H9tvdUzkipdSkR5nkCZA=
|
||||||
github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
|
github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
|
||||||
github.com/spaolacci/murmur3 v1.1.0 h1:7c1g84S4BPRrfL5Xrdp6fOJ206sU9y293DDHaoy0bLI=
|
github.com/spaolacci/murmur3 v1.1.0 h1:7c1g84S4BPRrfL5Xrdp6fOJ206sU9y293DDHaoy0bLI=
|
||||||
github.com/spaolacci/murmur3 v1.1.0/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA=
|
github.com/spaolacci/murmur3 v1.1.0/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA=
|
||||||
github.com/spf13/cobra v1.9.1 h1:CXSaggrXdbHK9CF+8ywj8Amf7PBRmPCOJugH954Nnlo=
|
github.com/spf13/cobra v1.10.1 h1:lJeBwCfmrnXthfAupyUTzJ/J4Nc1RsHC/mSRU2dll/s=
|
||||||
github.com/spf13/cobra v1.9.1/go.mod h1:nDyEzZ8ogv936Cinf6g1RU9MRY64Ir93oCnqb9wxYW0=
|
github.com/spf13/cobra v1.10.1/go.mod h1:7SmJGaTHFVBY0jW4NXGluQoLvhqFQM+6XSKD+P4XaB0=
|
||||||
github.com/spf13/pflag v1.0.6/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
|
github.com/spf13/pflag v1.0.9/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
|
||||||
github.com/spf13/pflag v1.0.7 h1:vN6T9TfwStFPFM5XzjsvmzZkLuaLX+HS+0SeFLRgU6M=
|
github.com/spf13/pflag v1.0.10 h1:4EBh2KAYBwaONj6b2Ye1GiHfwjqyROoF4RwYO+vPwFk=
|
||||||
github.com/spf13/pflag v1.0.7/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
|
github.com/spf13/pflag v1.0.10/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
|
||||||
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
|
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
|
||||||
github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw=
|
github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw=
|
||||||
github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo=
|
github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo=
|
||||||
@@ -171,23 +171,22 @@ github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/
|
|||||||
github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU=
|
github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU=
|
||||||
github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo=
|
github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo=
|
||||||
github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
|
github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
|
||||||
github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA=
|
github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U=
|
||||||
github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
|
github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U=
|
||||||
github.com/withfig/autocomplete-tools/integrations/cobra v1.2.1 h1:+dBg5k7nuTE38VVdoroRsT0Z88fmvdYrI2EjzJst35I=
|
github.com/withfig/autocomplete-tools/integrations/cobra v1.2.1 h1:+dBg5k7nuTE38VVdoroRsT0Z88fmvdYrI2EjzJst35I=
|
||||||
github.com/withfig/autocomplete-tools/integrations/cobra v1.2.1/go.mod h1:nmuySobZb4kFgFy6BptpXp/BBw+xFSyvVPP6auoJB4k=
|
github.com/withfig/autocomplete-tools/integrations/cobra v1.2.1/go.mod h1:nmuySobZb4kFgFy6BptpXp/BBw+xFSyvVPP6auoJB4k=
|
||||||
github.com/xo/terminfo v0.0.0-20210125001918-ca9a967f8778 h1:QldyIu/L63oPpyvQmHgvgickp1Yw510KJOqX7H24mg8=
|
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e h1:JVG44RsyaB9T2KIHavMF/ppJZNG9ZpyihvCd0w101no=
|
||||||
github.com/xo/terminfo v0.0.0-20210125001918-ca9a967f8778/go.mod h1:2MuV+tbUrU1zIOPMxZ5EncGwgmMJsa+9ucAQZXxsObs=
|
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e/go.mod h1:RbqR21r5mrJuqunuUZ/Dhy/avygyECGrLceyNeo4LiM=
|
||||||
github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
|
github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
|
||||||
github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
|
github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
|
||||||
github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k=
|
|
||||||
github.com/yuin/gopher-lua v1.1.1 h1:kYKnWBjvbNP4XLT3+bPEwAXJx262OhaHDWDVOPjL46M=
|
github.com/yuin/gopher-lua v1.1.1 h1:kYKnWBjvbNP4XLT3+bPEwAXJx262OhaHDWDVOPjL46M=
|
||||||
github.com/yuin/gopher-lua v1.1.1/go.mod h1:GBR0iDaNXjAgGg9zfCvksxSRnQx76gclCIb7kdAd1Pw=
|
github.com/yuin/gopher-lua v1.1.1/go.mod h1:GBR0iDaNXjAgGg9zfCvksxSRnQx76gclCIb7kdAd1Pw=
|
||||||
github.com/zeromicro/antlr v0.0.1 h1:CQpIn/dc0pUjgGQ81y98s/NGOm2Hfru2NNio2I9mQgk=
|
github.com/zeromicro/antlr v0.0.1 h1:CQpIn/dc0pUjgGQ81y98s/NGOm2Hfru2NNio2I9mQgk=
|
||||||
github.com/zeromicro/antlr v0.0.1/go.mod h1:nfpjEwFR6Q4xGDJMcZnCL9tEfQRgszMwu3rDz2Z+p5M=
|
github.com/zeromicro/antlr v0.0.1/go.mod h1:nfpjEwFR6Q4xGDJMcZnCL9tEfQRgszMwu3rDz2Z+p5M=
|
||||||
github.com/zeromicro/ddl-parser v1.0.5 h1:LaVqHdzMTjasua1yYpIYaksxKqRzFrEukj2Wi2EbWaQ=
|
github.com/zeromicro/ddl-parser v1.0.5 h1:LaVqHdzMTjasua1yYpIYaksxKqRzFrEukj2Wi2EbWaQ=
|
||||||
github.com/zeromicro/ddl-parser v1.0.5/go.mod h1:ISU/8NuPyEpl9pa17Py9TBPetMjtsiHrb9f5XGiYbo8=
|
github.com/zeromicro/ddl-parser v1.0.5/go.mod h1:ISU/8NuPyEpl9pa17Py9TBPetMjtsiHrb9f5XGiYbo8=
|
||||||
github.com/zeromicro/go-zero v1.8.5 h1:YkdQhYllE+BPOrxcni0oCewebs7qHfXvjN9glnpcmJQ=
|
github.com/zeromicro/go-zero v1.9.2 h1:ZXOXBIcazZ1pWAMiHyVnDQ3Sxwy7DYPzjE89Qtj9vqM=
|
||||||
github.com/zeromicro/go-zero v1.8.5/go.mod h1:P0DKW1vJx+2J3TReptbeg0H9tRSvehymr0HX4SCfZ6g=
|
github.com/zeromicro/go-zero v1.9.2/go.mod h1:k8YBMEFZKjTd4q/qO5RCW+zDgUlNyAs5vue3P4/Kmn0=
|
||||||
go.etcd.io/etcd/api/v3 v3.5.15 h1:3KpLJir1ZEBrYuV2v+Twaa/e2MdDCEZ/70H+lzEiwsk=
|
go.etcd.io/etcd/api/v3 v3.5.15 h1:3KpLJir1ZEBrYuV2v+Twaa/e2MdDCEZ/70H+lzEiwsk=
|
||||||
go.etcd.io/etcd/api/v3 v3.5.15/go.mod h1:N9EhGzXq58WuMllgH9ZvnEr7SI9pS0k0+DHZezGp7jM=
|
go.etcd.io/etcd/api/v3 v3.5.15/go.mod h1:N9EhGzXq58WuMllgH9ZvnEr7SI9pS0k0+DHZezGp7jM=
|
||||||
go.etcd.io/etcd/client/pkg/v3 v3.5.15 h1:fo0HpWz/KlHGMCC+YejpiCmyWDEuIpnTDzpJLB5fWlA=
|
go.etcd.io/etcd/client/pkg/v3 v3.5.15 h1:fo0HpWz/KlHGMCC+YejpiCmyWDEuIpnTDzpJLB5fWlA=
|
||||||
@@ -222,6 +221,8 @@ go.uber.org/automaxprocs v1.6.0 h1:O3y2/QNTOdbF+e/dpXNNW7Rx2hZ4sTIPyybbxyNqTUs=
|
|||||||
go.uber.org/automaxprocs v1.6.0/go.mod h1:ifeIMSnPZuznNm6jmdzmU3/bfk01Fe2fotchwEFJ8r8=
|
go.uber.org/automaxprocs v1.6.0/go.mod h1:ifeIMSnPZuznNm6jmdzmU3/bfk01Fe2fotchwEFJ8r8=
|
||||||
go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto=
|
go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto=
|
||||||
go.uber.org/goleak v1.3.0/go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE=
|
go.uber.org/goleak v1.3.0/go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE=
|
||||||
|
go.uber.org/mock v0.4.0 h1:VcM4ZOtdbR4f6VXfiOpwpVJDL6lCReaZ6mw31wqh7KU=
|
||||||
|
go.uber.org/mock v0.4.0/go.mod h1:a6FSlNadKUHUa9IP5Vyt1zh4fC7uAwxMutEAscFbkZc=
|
||||||
go.uber.org/multierr v1.9.0 h1:7fIwc/ZtS0q++VgcfqFDxSBZVv/Xo49/SYnDFupUwlI=
|
go.uber.org/multierr v1.9.0 h1:7fIwc/ZtS0q++VgcfqFDxSBZVv/Xo49/SYnDFupUwlI=
|
||||||
go.uber.org/multierr v1.9.0/go.mod h1:X2jQV1h+kxSjClGpnseKVIxpmcjrj7MNnI0bnlfKTVQ=
|
go.uber.org/multierr v1.9.0/go.mod h1:X2jQV1h+kxSjClGpnseKVIxpmcjrj7MNnI0bnlfKTVQ=
|
||||||
go.uber.org/zap v1.24.0 h1:FiJd5l1UOLj0wCgbSE0rwwXHzEdAZS6hiiSnxJN/D60=
|
go.uber.org/zap v1.24.0 h1:FiJd5l1UOLj0wCgbSE0rwwXHzEdAZS6hiiSnxJN/D60=
|
||||||
@@ -231,14 +232,14 @@ golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8U
|
|||||||
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
|
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
|
||||||
golang.org/x/crypto v0.33.0 h1:IOBPskki6Lysi0lo9qQvbxiQ+FvsCC/YWOecCHAixus=
|
golang.org/x/crypto v0.33.0 h1:IOBPskki6Lysi0lo9qQvbxiQ+FvsCC/YWOecCHAixus=
|
||||||
golang.org/x/crypto v0.33.0/go.mod h1:bVdXmD7IV/4GdElGPozy6U7lWdRXA4qyRVGJV57uQ5M=
|
golang.org/x/crypto v0.33.0/go.mod h1:bVdXmD7IV/4GdElGPozy6U7lWdRXA4qyRVGJV57uQ5M=
|
||||||
|
golang.org/x/exp v0.0.0-20220909182711-5c715a9e8561 h1:MDc5xs78ZrZr3HMQugiXOAkSZtfTpbJLDr/lwfgO53E=
|
||||||
|
golang.org/x/exp v0.0.0-20220909182711-5c715a9e8561/go.mod h1:cyybsKvd6eL0RnXn6p/Grxp8F5bW7iYuBgsNCOHpMYE=
|
||||||
golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
|
golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
|
||||||
golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
|
golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
|
||||||
golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
|
|
||||||
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
|
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
|
||||||
golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
|
golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
|
||||||
golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
|
golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
|
||||||
golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU=
|
golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU=
|
||||||
golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM=
|
|
||||||
golang.org/x/net v0.35.0 h1:T5GQRQb2y08kTAByq9L4/bz8cipCdA8FbRTXewonqY8=
|
golang.org/x/net v0.35.0 h1:T5GQRQb2y08kTAByq9L4/bz8cipCdA8FbRTXewonqY8=
|
||||||
golang.org/x/net v0.35.0/go.mod h1:EglIi67kWsHKlRzzVMUD93VMSWGFOMSZgxFjparz1Qk=
|
golang.org/x/net v0.35.0/go.mod h1:EglIi67kWsHKlRzzVMUD93VMSWGFOMSZgxFjparz1Qk=
|
||||||
golang.org/x/oauth2 v0.24.0 h1:KTBBxWqUa0ykRPLtV69rRto9TLXcqYkeswu48x/gvNE=
|
golang.org/x/oauth2 v0.24.0 h1:KTBBxWqUa0ykRPLtV69rRto9TLXcqYkeswu48x/gvNE=
|
||||||
@@ -246,20 +247,15 @@ golang.org/x/oauth2 v0.24.0/go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbht
|
|||||||
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
||||||
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
||||||
golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
||||||
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
|
||||||
golang.org/x/sync v0.11.0 h1:GGz8+XQP4FvTTrjZPzNKTMFtSXH80RAzG+5ghFPgK9w=
|
golang.org/x/sync v0.11.0 h1:GGz8+XQP4FvTTrjZPzNKTMFtSXH80RAzG+5ghFPgK9w=
|
||||||
golang.org/x/sync v0.11.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
|
golang.org/x/sync v0.11.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
|
||||||
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
|
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
|
||||||
golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
|
||||||
golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
|
||||||
golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
|
||||||
golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
golang.org/x/sys v0.30.0 h1:QjkSwP/36a20jFYWkSue1YwXzLmsV5Gfq7Eiy72C1uc=
|
golang.org/x/sys v0.30.0 h1:QjkSwP/36a20jFYWkSue1YwXzLmsV5Gfq7Eiy72C1uc=
|
||||||
golang.org/x/sys v0.30.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
|
golang.org/x/sys v0.30.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
|
||||||
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
|
|
||||||
golang.org/x/term v0.29.0 h1:L6pJp37ocefwRRtYPKSWOWzOtWSxVajvz2ldH/xi3iU=
|
golang.org/x/term v0.29.0 h1:L6pJp37ocefwRRtYPKSWOWzOtWSxVajvz2ldH/xi3iU=
|
||||||
golang.org/x/term v0.29.0/go.mod h1:6bl4lRlvVuDgSf3179VpIxBF0o10JUpXWOnI7nErv7s=
|
golang.org/x/term v0.29.0/go.mod h1:6bl4lRlvVuDgSf3179VpIxBF0o10JUpXWOnI7nErv7s=
|
||||||
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
|
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
|
||||||
@@ -272,7 +268,6 @@ golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGm
|
|||||||
golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
|
golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
|
||||||
golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE=
|
golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE=
|
||||||
golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA=
|
golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA=
|
||||||
golang.org/x/tools v0.1.1/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk=
|
|
||||||
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d h1:vU5i/LfpvrRCpgM/VPfJLg5KjxD3E+hfT1SH+d9zLwg=
|
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d h1:vU5i/LfpvrRCpgM/VPfJLg5KjxD3E+hfT1SH+d9zLwg=
|
||||||
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d/go.mod h1:aiJjzUbINMkxbQROHiO6hDPo2LHcIPhhQsa9DLh0yGk=
|
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d/go.mod h1:aiJjzUbINMkxbQROHiO6hDPo2LHcIPhhQsa9DLh0yGk=
|
||||||
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
|
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
|
||||||
|
|||||||
@@ -47,6 +47,7 @@
|
|||||||
"home": "{{.global.home}}",
|
"home": "{{.global.home}}",
|
||||||
"remote": "{{.global.remote}}",
|
"remote": "{{.global.remote}}",
|
||||||
"branch": "{{.global.branch}}",
|
"branch": "{{.global.branch}}",
|
||||||
|
"module": "Custom module name for go.mod (default: directory name)",
|
||||||
"style": "{{.global.style}}"
|
"style": "{{.global.style}}"
|
||||||
},
|
},
|
||||||
"validate": {
|
"validate": {
|
||||||
@@ -238,6 +239,7 @@
|
|||||||
"home": "{{.global.home}}",
|
"home": "{{.global.home}}",
|
||||||
"remote": "{{.global.remote}}",
|
"remote": "{{.global.remote}}",
|
||||||
"branch": "{{.global.branch}}",
|
"branch": "{{.global.branch}}",
|
||||||
|
"module": "Custom module name for go.mod (default: directory name)",
|
||||||
"verbose": "Enable log output",
|
"verbose": "Enable log output",
|
||||||
"client": "Whether to generate rpc client"
|
"client": "Whether to generate rpc client"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
// BuildVersion is the version of goctl.
|
// BuildVersion is the version of goctl.
|
||||||
const BuildVersion = "1.9.0-alpha"
|
const BuildVersion = "1.9.2"
|
||||||
|
|
||||||
var tag = map[string]int{"pre-alpha": 0, "alpha": 1, "pre-beta": 2, "beta": 3, "released": 4, "": 5}
|
var tag = map[string]int{"pre-alpha": 0, "alpha": 1, "pre-beta": 2, "beta": 3, "released": 4, "": 5}
|
||||||
|
|
||||||
|
|||||||
@@ -145,14 +145,14 @@ func MySqlDataSource(_ *cobra.Command, _ []string) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func mergeColumns(columns []string) []string {
|
func mergeColumns(columns []string) []string {
|
||||||
set := collection.NewSet()
|
set := collection.NewSet[string]()
|
||||||
for _, v := range columns {
|
for _, v := range columns {
|
||||||
fields := strings.FieldsFunc(v, func(r rune) bool {
|
fields := strings.FieldsFunc(v, func(r rune) bool {
|
||||||
return r == ','
|
return r == ','
|
||||||
})
|
})
|
||||||
set.AddStr(fields...)
|
set.Add(fields...)
|
||||||
}
|
}
|
||||||
return set.KeysStr()
|
return set.Keys()
|
||||||
}
|
}
|
||||||
|
|
||||||
type pattern map[string]struct{}
|
type pattern map[string]struct{}
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ import (
|
|||||||
"github.com/zeromicro/go-zero/tools/goctl/util/format"
|
"github.com/zeromicro/go-zero/tools/goctl/util/format"
|
||||||
)
|
)
|
||||||
|
|
||||||
// BeforeCommands run before comamnd run to show some migration notes
|
// BeforeCommands run before command run to show some migration notes
|
||||||
func BeforeCommands(dir, style string) error {
|
func BeforeCommands(dir, style string) error {
|
||||||
if err := migrateBefore1_3_4(dir, style); err != nil {
|
if err := migrateBefore1_3_4(dir, style); err != nil {
|
||||||
return err
|
return err
|
||||||
|
|||||||
@@ -60,17 +60,17 @@ func genCustomized(table Table, withCache, postgreSql bool) (string, error) {
|
|||||||
fields = append(fields, f)
|
fields = append(fields, f)
|
||||||
}
|
}
|
||||||
|
|
||||||
keySet := collection.NewSet()
|
keySet := collection.NewSet[string]()
|
||||||
keyVariableSet := collection.NewSet()
|
keyVariableSet := collection.NewSet[string]()
|
||||||
keySet.AddStr(table.PrimaryCacheKey.KeyExpression)
|
keySet.Add(table.PrimaryCacheKey.KeyExpression)
|
||||||
keyVariableSet.AddStr(table.PrimaryCacheKey.KeyLeft)
|
keyVariableSet.Add(table.PrimaryCacheKey.KeyLeft)
|
||||||
for _, key := range table.UniqueCacheKey {
|
for _, key := range table.UniqueCacheKey {
|
||||||
keySet.AddStr(key.DataKeyExpression)
|
keySet.Add(key.DataKeyExpression)
|
||||||
keyVariableSet.AddStr(key.KeyLeft)
|
keyVariableSet.Add(key.KeyLeft)
|
||||||
}
|
}
|
||||||
keys := keySet.KeysStr()
|
keys := keySet.Keys()
|
||||||
sort.Strings(keys)
|
sort.Strings(keys)
|
||||||
keyVars := keyVariableSet.KeysStr()
|
keyVars := keyVariableSet.Keys()
|
||||||
sort.Strings(keyVars)
|
sort.Strings(keyVars)
|
||||||
|
|
||||||
camel := table.Name.ToCamel()
|
camel := table.Name.ToCamel()
|
||||||
|
|||||||
@@ -12,17 +12,17 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
func genDelete(table Table, withCache, postgreSql bool) (string, string, error) {
|
func genDelete(table Table, withCache, postgreSql bool) (string, string, error) {
|
||||||
keySet := collection.NewSet()
|
keySet := collection.NewSet[string]()
|
||||||
keyVariableSet := collection.NewSet()
|
keyVariableSet := collection.NewSet[string]()
|
||||||
keySet.AddStr(table.PrimaryCacheKey.KeyExpression)
|
keySet.Add(table.PrimaryCacheKey.KeyExpression)
|
||||||
keyVariableSet.AddStr(table.PrimaryCacheKey.KeyLeft)
|
keyVariableSet.Add(table.PrimaryCacheKey.KeyLeft)
|
||||||
for _, key := range table.UniqueCacheKey {
|
for _, key := range table.UniqueCacheKey {
|
||||||
keySet.AddStr(key.DataKeyExpression)
|
keySet.Add(key.DataKeyExpression)
|
||||||
keyVariableSet.AddStr(key.KeyLeft)
|
keyVariableSet.Add(key.KeyLeft)
|
||||||
}
|
}
|
||||||
keys := keySet.KeysStr()
|
keys := keySet.Keys()
|
||||||
sort.Strings(keys)
|
sort.Strings(keys)
|
||||||
keyVars := keyVariableSet.KeysStr()
|
keyVars := keyVariableSet.Keys()
|
||||||
sort.Strings(keyVars)
|
sort.Strings(keyVars)
|
||||||
|
|
||||||
camel := table.Name.ToCamel()
|
camel := table.Name.ToCamel()
|
||||||
|
|||||||
@@ -13,17 +13,17 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
func genInsert(table Table, withCache, postgreSql bool) (string, string, error) {
|
func genInsert(table Table, withCache, postgreSql bool) (string, string, error) {
|
||||||
keySet := collection.NewSet()
|
keySet := collection.NewSet[string]()
|
||||||
keyVariableSet := collection.NewSet()
|
keyVariableSet := collection.NewSet[string]()
|
||||||
keySet.AddStr(table.PrimaryCacheKey.DataKeyExpression)
|
keySet.Add(table.PrimaryCacheKey.DataKeyExpression)
|
||||||
keyVariableSet.AddStr(table.PrimaryCacheKey.KeyLeft)
|
keyVariableSet.Add(table.PrimaryCacheKey.KeyLeft)
|
||||||
for _, key := range table.UniqueCacheKey {
|
for _, key := range table.UniqueCacheKey {
|
||||||
keySet.AddStr(key.DataKeyExpression)
|
keySet.Add(key.DataKeyExpression)
|
||||||
keyVariableSet.AddStr(key.KeyLeft)
|
keyVariableSet.Add(key.KeyLeft)
|
||||||
}
|
}
|
||||||
keys := keySet.KeysStr()
|
keys := keySet.Keys()
|
||||||
sort.Strings(keys)
|
sort.Strings(keys)
|
||||||
keyVars := keyVariableSet.KeysStr()
|
keyVars := keyVariableSet.Keys()
|
||||||
sort.Strings(keyVars)
|
sort.Strings(keyVars)
|
||||||
|
|
||||||
expressions := make([]string, 0)
|
expressions := make([]string, 0)
|
||||||
|
|||||||
@@ -32,17 +32,17 @@ func genUpdate(table Table, withCache, postgreSql bool) (
|
|||||||
expressionValues = append(expressionValues, pkg+camel)
|
expressionValues = append(expressionValues, pkg+camel)
|
||||||
}
|
}
|
||||||
|
|
||||||
keySet := collection.NewSet()
|
keySet := collection.NewSet[string]()
|
||||||
keyVariableSet := collection.NewSet()
|
keyVariableSet := collection.NewSet[string]()
|
||||||
keySet.AddStr(table.PrimaryCacheKey.DataKeyExpression)
|
keySet.Add(table.PrimaryCacheKey.DataKeyExpression)
|
||||||
keyVariableSet.AddStr(table.PrimaryCacheKey.KeyLeft)
|
keyVariableSet.Add(table.PrimaryCacheKey.KeyLeft)
|
||||||
for _, key := range table.UniqueCacheKey {
|
for _, key := range table.UniqueCacheKey {
|
||||||
keySet.AddStr(key.DataKeyExpression)
|
keySet.Add(key.DataKeyExpression)
|
||||||
keyVariableSet.AddStr(key.KeyLeft)
|
keyVariableSet.Add(key.KeyLeft)
|
||||||
}
|
}
|
||||||
keys := keySet.KeysStr()
|
keys := keySet.Keys()
|
||||||
sort.Strings(keys)
|
sort.Strings(keys)
|
||||||
keyVars := keyVariableSet.KeysStr()
|
keyVars := keyVariableSet.Keys()
|
||||||
sort.Strings(keyVars)
|
sort.Strings(keyVars)
|
||||||
|
|
||||||
if postgreSql {
|
if postgreSql {
|
||||||
|
|||||||
@@ -36,15 +36,15 @@ func genVars(table Table, withCache, postgreSql bool) (string, error) {
|
|||||||
"postgreSql": postgreSql,
|
"postgreSql": postgreSql,
|
||||||
"data": table,
|
"data": table,
|
||||||
"ignoreColumns": func() string {
|
"ignoreColumns": func() string {
|
||||||
var set = collection.NewSet()
|
var set = collection.NewSet[string]()
|
||||||
for _, c := range table.ignoreColumns {
|
for _, c := range table.ignoreColumns {
|
||||||
if postgreSql {
|
if postgreSql {
|
||||||
set.AddStr(fmt.Sprintf(`"%s"`, c))
|
set.Add(fmt.Sprintf(`"%s"`, c))
|
||||||
} else {
|
} else {
|
||||||
set.AddStr(fmt.Sprintf("\"`%s`\"", c))
|
set.Add(fmt.Sprintf("\"`%s`\"", c))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
list := set.KeysStr()
|
list := set.Keys()
|
||||||
sort.Strings(list)
|
sort.Strings(list)
|
||||||
return strings.Join(list, ", ")
|
return strings.Join(list, ", ")
|
||||||
}(),
|
}(),
|
||||||
|
|||||||
@@ -81,7 +81,7 @@ func Parse(filename, database string, strict bool) ([]*Table, error) {
|
|||||||
for indexTable, e := range tables {
|
for indexTable, e := range tables {
|
||||||
var (
|
var (
|
||||||
primaryColumn string
|
primaryColumn string
|
||||||
primaryColumnSet = collection.NewSet()
|
primaryColumnSet = collection.NewSet[string]()
|
||||||
uniqueKeyMap = make(map[string][]string)
|
uniqueKeyMap = make(map[string][]string)
|
||||||
// Unused local variable
|
// Unused local variable
|
||||||
// normalKeyMap = make(map[string][]string)
|
// normalKeyMap = make(map[string][]string)
|
||||||
@@ -91,7 +91,7 @@ func Parse(filename, database string, strict bool) ([]*Table, error) {
|
|||||||
for _, column := range columns {
|
for _, column := range columns {
|
||||||
if column.Constraint != nil {
|
if column.Constraint != nil {
|
||||||
if column.Constraint.Primary {
|
if column.Constraint.Primary {
|
||||||
primaryColumnSet.AddStr(column.Name)
|
primaryColumnSet.Add(column.Name)
|
||||||
}
|
}
|
||||||
|
|
||||||
if column.Constraint.Unique {
|
if column.Constraint.Unique {
|
||||||
@@ -113,7 +113,7 @@ func Parse(filename, database string, strict bool) ([]*Table, error) {
|
|||||||
|
|
||||||
if len(e.ColumnPrimaryKey) == 1 {
|
if len(e.ColumnPrimaryKey) == 1 {
|
||||||
primaryColumn = e.ColumnPrimaryKey[0]
|
primaryColumn = e.ColumnPrimaryKey[0]
|
||||||
primaryColumnSet.AddStr(e.ColumnPrimaryKey[0])
|
primaryColumnSet.Add(e.ColumnPrimaryKey[0])
|
||||||
}
|
}
|
||||||
|
|
||||||
if len(e.ColumnUniqueKey) > 0 {
|
if len(e.ColumnUniqueKey) > 0 {
|
||||||
@@ -173,7 +173,7 @@ func Parse(filename, database string, strict bool) ([]*Table, error) {
|
|||||||
|
|
||||||
func checkDuplicateUniqueIndex(uniqueIndex map[string][]*Field, tableName string) {
|
func checkDuplicateUniqueIndex(uniqueIndex map[string][]*Field, tableName string) {
|
||||||
log := console.NewColorConsole()
|
log := console.NewColorConsole()
|
||||||
uniqueSet := collection.NewSet()
|
uniqueSet := collection.NewSet[string]()
|
||||||
for k, i := range uniqueIndex {
|
for k, i := range uniqueIndex {
|
||||||
var list []string
|
var list []string
|
||||||
for _, e := range i {
|
for _, e := range i {
|
||||||
@@ -187,7 +187,7 @@ func checkDuplicateUniqueIndex(uniqueIndex map[string][]*Field, tableName string
|
|||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
uniqueSet.AddStr(joinRet)
|
uniqueSet.Add(joinRet)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -311,7 +311,7 @@ func ConvertDataType(table *model.Table, strict bool) (*Table, error) {
|
|||||||
return reply.Fields[i].OrdinalPosition < reply.Fields[j].OrdinalPosition
|
return reply.Fields[i].OrdinalPosition < reply.Fields[j].OrdinalPosition
|
||||||
})
|
})
|
||||||
|
|
||||||
uniqueIndexSet := collection.NewSet()
|
uniqueIndexSet := collection.NewSet[string]()
|
||||||
log := console.NewColorConsole()
|
log := console.NewColorConsole()
|
||||||
for indexName, each := range table.UniqueIndex {
|
for indexName, each := range table.UniqueIndex {
|
||||||
sort.Slice(each, func(i, j int) bool {
|
sort.Slice(each, func(i, j int) bool {
|
||||||
@@ -342,7 +342,7 @@ func ConvertDataType(table *model.Table, strict bool) (*Table, error) {
|
|||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
uniqueIndexSet.AddStr(uniqueKey)
|
uniqueIndexSet.Add(uniqueKey)
|
||||||
reply.UniqueIndex[indexName] = list
|
reply.UniqueIndex[indexName] = list
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -99,12 +99,12 @@ func (conn *MockConn) RawDB() (*sql.DB, error) {
|
|||||||
return conn.db, nil
|
return conn.db, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// Transact is the implemention of sqlx.SqlConn, nothing to do
|
// Transact is the implementation of sqlx.SqlConn, nothing to do
|
||||||
func (conn *MockConn) Transact(func(session sqlx.Session) error) error {
|
func (conn *MockConn) Transact(func(session sqlx.Session) error) error {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// TransactCtx is the implemention of sqlx.SqlConn, nothing to do
|
// TransactCtx is the implementation of sqlx.SqlConn, nothing to do
|
||||||
func (conn *MockConn) TransactCtx(ctx context.Context, fn func(context.Context, sqlx.Session) error) error {
|
func (conn *MockConn) TransactCtx(ctx context.Context, fn func(context.Context, sqlx.Session) error) error {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,23 +8,36 @@ import (
|
|||||||
"github.com/zeromicro/go-zero/tools/goctl/util/pathx"
|
"github.com/zeromicro/go-zero/tools/goctl/util/pathx"
|
||||||
)
|
)
|
||||||
|
|
||||||
func GetParentPackage(dir string) (string, error) {
|
func GetParentPackage(dir string) (string, string, error) {
|
||||||
|
return GetParentPackageWithModule(dir, "")
|
||||||
|
}
|
||||||
|
|
||||||
|
func GetParentPackageWithModule(dir, moduleName string) (string, string, error) {
|
||||||
abs, err := filepath.Abs(dir)
|
abs, err := filepath.Abs(dir)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return "", err
|
return "", "", err
|
||||||
}
|
}
|
||||||
|
|
||||||
projectCtx, err := ctx.Prepare(abs)
|
var projectCtx *ctx.ProjectContext
|
||||||
|
if len(moduleName) > 0 {
|
||||||
|
projectCtx, err = ctx.PrepareWithModule(abs, moduleName)
|
||||||
|
} else {
|
||||||
|
projectCtx, err = ctx.Prepare(abs)
|
||||||
|
}
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return "", err
|
return "", "", err
|
||||||
}
|
}
|
||||||
|
|
||||||
// fix https://github.com/zeromicro/go-zero/issues/1058
|
return buildParentPackage(projectCtx)
|
||||||
|
}
|
||||||
|
|
||||||
|
// buildParentPackage extracts the common logic for building parent package paths
|
||||||
|
func buildParentPackage(projectCtx *ctx.ProjectContext) (string, string, error) {
|
||||||
wd := projectCtx.WorkDir
|
wd := projectCtx.WorkDir
|
||||||
d := projectCtx.Dir
|
d := projectCtx.Dir
|
||||||
same, err := pathx.SameFile(wd, d)
|
same, err := pathx.SameFile(wd, d)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return "", err
|
return "", "", err
|
||||||
}
|
}
|
||||||
|
|
||||||
trim := strings.TrimPrefix(projectCtx.WorkDir, projectCtx.Dir)
|
trim := strings.TrimPrefix(projectCtx.WorkDir, projectCtx.Dir)
|
||||||
@@ -32,5 +45,5 @@ func GetParentPackage(dir string) (string, error) {
|
|||||||
trim = strings.TrimPrefix(strings.ToLower(projectCtx.WorkDir), strings.ToLower(projectCtx.Dir))
|
trim = strings.TrimPrefix(strings.ToLower(projectCtx.WorkDir), strings.ToLower(projectCtx.Dir))
|
||||||
}
|
}
|
||||||
|
|
||||||
return filepath.ToSlash(filepath.Join(projectCtx.Path, trim)), nil
|
return filepath.ToSlash(filepath.Join(projectCtx.Path, trim)), projectCtx.Path, nil
|
||||||
}
|
}
|
||||||
|
|||||||
223
tools/goctl/pkg/golang/path_test.go
Normal file
223
tools/goctl/pkg/golang/path_test.go
Normal file
@@ -0,0 +1,223 @@
|
|||||||
|
package golang
|
||||||
|
|
||||||
|
import (
|
||||||
|
"os"
|
||||||
|
"path/filepath"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
|
"github.com/stretchr/testify/require"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestGetParentPackage(t *testing.T) {
|
||||||
|
// Create a temporary directory for testing
|
||||||
|
tempDir, err := os.MkdirTemp("", "goctl-test-*")
|
||||||
|
require.NoError(t, err)
|
||||||
|
defer os.RemoveAll(tempDir)
|
||||||
|
|
||||||
|
// Test with a directory (should create go.mod with directory name)
|
||||||
|
testDir := filepath.Join(tempDir, "testproject")
|
||||||
|
err = os.MkdirAll(testDir, 0755)
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
parentPkg, rootPkg, err := GetParentPackage(testDir)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
assert.Equal(t, "testproject", parentPkg)
|
||||||
|
assert.Equal(t, "testproject", rootPkg)
|
||||||
|
|
||||||
|
// Verify go.mod was created with directory name
|
||||||
|
goModPath := filepath.Join(testDir, "go.mod")
|
||||||
|
assert.FileExists(t, goModPath)
|
||||||
|
|
||||||
|
content, err := os.ReadFile(goModPath)
|
||||||
|
require.NoError(t, err)
|
||||||
|
assert.Contains(t, string(content), "module testproject")
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestGetParentPackageWithModule(t *testing.T) {
|
||||||
|
tests := []struct {
|
||||||
|
name string
|
||||||
|
moduleName string
|
||||||
|
expectedModule string
|
||||||
|
expectedPkg string
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
name: "custom module name",
|
||||||
|
moduleName: "github.com/example/myproject",
|
||||||
|
expectedModule: "github.com/example/myproject",
|
||||||
|
expectedPkg: "github.com/example/myproject",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "simple module name",
|
||||||
|
moduleName: "myservice",
|
||||||
|
expectedModule: "myservice",
|
||||||
|
expectedPkg: "myservice",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "empty module name falls back to directory",
|
||||||
|
moduleName: "",
|
||||||
|
expectedModule: "fallback",
|
||||||
|
expectedPkg: "fallback",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, tt := range tests {
|
||||||
|
t.Run(tt.name, func(t *testing.T) {
|
||||||
|
// Create a temporary directory for testing
|
||||||
|
tempDir, err := os.MkdirTemp("", "goctl-test-*")
|
||||||
|
require.NoError(t, err)
|
||||||
|
defer os.RemoveAll(tempDir)
|
||||||
|
|
||||||
|
// Create test directory - use "fallback" name for empty module test
|
||||||
|
testDirName := "fallback"
|
||||||
|
if tt.name != "empty module name falls back to directory" {
|
||||||
|
testDirName = "testdir"
|
||||||
|
}
|
||||||
|
|
||||||
|
testDir := filepath.Join(tempDir, testDirName)
|
||||||
|
err = os.MkdirAll(testDir, 0755)
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
parentPkg, rootPkg, err := GetParentPackageWithModule(testDir, tt.moduleName)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
assert.Equal(t, tt.expectedPkg, parentPkg)
|
||||||
|
assert.Equal(t, tt.expectedModule, rootPkg)
|
||||||
|
|
||||||
|
// Verify go.mod was created with correct module name
|
||||||
|
goModPath := filepath.Join(testDir, "go.mod")
|
||||||
|
assert.FileExists(t, goModPath)
|
||||||
|
|
||||||
|
content, err := os.ReadFile(goModPath)
|
||||||
|
require.NoError(t, err)
|
||||||
|
assert.Contains(t, string(content), "module "+tt.expectedModule)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestGetParentPackageWithModule_InvalidDir(t *testing.T) {
|
||||||
|
// Test with non-existent directory
|
||||||
|
_, _, err := GetParentPackageWithModule("/non/existent/path", "github.com/example/test")
|
||||||
|
assert.Error(t, err)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestGetParentPackage_InvalidDir(t *testing.T) {
|
||||||
|
// Test with non-existent directory
|
||||||
|
_, _, err := GetParentPackage("/non/existent/path")
|
||||||
|
assert.Error(t, err)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestGetParentPackage_UsesGetParentPackageWithModule(t *testing.T) {
|
||||||
|
// Create a temporary directory for testing
|
||||||
|
tempDir, err := os.MkdirTemp("", "goctl-test-*")
|
||||||
|
require.NoError(t, err)
|
||||||
|
defer os.RemoveAll(tempDir)
|
||||||
|
|
||||||
|
testDir := filepath.Join(tempDir, "testproject")
|
||||||
|
err = os.MkdirAll(testDir, 0755)
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
// Test that GetParentPackage calls GetParentPackageWithModule with empty string
|
||||||
|
parentPkg1, rootPkg1, err1 := GetParentPackage(testDir)
|
||||||
|
require.NoError(t, err1)
|
||||||
|
|
||||||
|
// Clean up go.mod to test again
|
||||||
|
os.Remove(filepath.Join(testDir, "go.mod"))
|
||||||
|
|
||||||
|
parentPkg2, rootPkg2, err2 := GetParentPackageWithModule(testDir, "")
|
||||||
|
require.NoError(t, err2)
|
||||||
|
|
||||||
|
// Should produce identical results
|
||||||
|
assert.Equal(t, parentPkg1, parentPkg2)
|
||||||
|
assert.Equal(t, rootPkg1, rootPkg2)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestBuildParentPackage(t *testing.T) {
|
||||||
|
// This tests the internal buildParentPackage function indirectly
|
||||||
|
// through the public API, as it's a private function
|
||||||
|
|
||||||
|
// Create a temporary directory with subdirectory structure
|
||||||
|
tempDir, err := os.MkdirTemp("", "goctl-test-*")
|
||||||
|
require.NoError(t, err)
|
||||||
|
defer os.RemoveAll(tempDir)
|
||||||
|
|
||||||
|
// Create a nested directory structure
|
||||||
|
projectDir := filepath.Join(tempDir, "myproject")
|
||||||
|
subDir := filepath.Join(projectDir, "internal", "logic")
|
||||||
|
err = os.MkdirAll(subDir, 0755)
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
// Test from root directory
|
||||||
|
parentPkg, rootPkg, err := GetParentPackageWithModule(projectDir, "github.com/example/myproject")
|
||||||
|
assert.NoError(t, err)
|
||||||
|
assert.Equal(t, "github.com/example/myproject", parentPkg)
|
||||||
|
assert.Equal(t, "github.com/example/myproject", rootPkg)
|
||||||
|
|
||||||
|
// Test from subdirectory
|
||||||
|
parentPkg2, rootPkg2, err := GetParentPackageWithModule(subDir, "github.com/example/myproject")
|
||||||
|
assert.NoError(t, err)
|
||||||
|
assert.Equal(t, "github.com/example/myproject/internal/logic", parentPkg2)
|
||||||
|
assert.Equal(t, "github.com/example/myproject", rootPkg2)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestGetParentPackageWithModule_SpecialCharacters(t *testing.T) {
|
||||||
|
tests := []struct {
|
||||||
|
name string
|
||||||
|
moduleName string
|
||||||
|
valid bool
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
name: "domain with path",
|
||||||
|
moduleName: "github.com/user/repo",
|
||||||
|
valid: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "domain with version",
|
||||||
|
moduleName: "github.com/user/repo/v2",
|
||||||
|
valid: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "private repo",
|
||||||
|
moduleName: "private.example.com/team/project",
|
||||||
|
valid: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "simple name with underscore",
|
||||||
|
moduleName: "my_project",
|
||||||
|
valid: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "simple name with hyphen",
|
||||||
|
moduleName: "my-project",
|
||||||
|
valid: true,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, tt := range tests {
|
||||||
|
t.Run(tt.name, func(t *testing.T) {
|
||||||
|
// Create a temporary directory for testing
|
||||||
|
tempDir, err := os.MkdirTemp("", "goctl-test-*")
|
||||||
|
require.NoError(t, err)
|
||||||
|
defer os.RemoveAll(tempDir)
|
||||||
|
|
||||||
|
testDir := filepath.Join(tempDir, "testdir")
|
||||||
|
err = os.MkdirAll(testDir, 0755)
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
parentPkg, rootPkg, err := GetParentPackageWithModule(testDir, tt.moduleName)
|
||||||
|
|
||||||
|
if tt.valid {
|
||||||
|
assert.NoError(t, err)
|
||||||
|
assert.Equal(t, tt.moduleName, parentPkg)
|
||||||
|
assert.Equal(t, tt.moduleName, rootPkg)
|
||||||
|
|
||||||
|
// Verify go.mod contains the module name
|
||||||
|
goModPath := filepath.Join(testDir, "go.mod")
|
||||||
|
content, err := os.ReadFile(goModPath)
|
||||||
|
require.NoError(t, err)
|
||||||
|
assert.Contains(t, string(content), "module "+tt.moduleName)
|
||||||
|
} else {
|
||||||
|
assert.Error(t, err)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -425,9 +425,12 @@ func (a *Analyzer) getType(expr *ast.BodyStmt, req bool) (spec.Type, error) {
|
|||||||
}
|
}
|
||||||
if body.LBrack != nil {
|
if body.LBrack != nil {
|
||||||
if body.Star != nil {
|
if body.Star != nil {
|
||||||
return spec.PointerType{
|
return spec.ArrayType{
|
||||||
RawName: rawText,
|
RawName: rawText,
|
||||||
Type: tp,
|
Value: spec.PointerType{
|
||||||
|
RawName: rawText,
|
||||||
|
Type: tp,
|
||||||
|
},
|
||||||
}, nil
|
}, nil
|
||||||
}
|
}
|
||||||
return spec.ArrayType{
|
return spec.ArrayType{
|
||||||
|
|||||||
@@ -43,7 +43,7 @@ func Install(cacheDir string) (string, error) {
|
|||||||
case vars.OsLinux:
|
case vars.OsLinux:
|
||||||
downloadUrl = url[fmt.Sprintf("%s_%d", vars.OsLinux, bit)]
|
downloadUrl = url[fmt.Sprintf("%s_%d", vars.OsLinux, bit)]
|
||||||
default:
|
default:
|
||||||
return "", fmt.Errorf("unsupport OS: %q", goos)
|
return "", fmt.Errorf("unsupported OS: %q", goos)
|
||||||
}
|
}
|
||||||
|
|
||||||
err := downloader.Download(downloadUrl, tempFile)
|
err := downloader.Download(downloadUrl, tempFile)
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user