-
Notifications
You must be signed in to change notification settings - Fork 298
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(registry): added self contained registries so you can run a back…
… to back test in process
- Loading branch information
1 parent
5185ff8
commit 23f89db
Showing
13 changed files
with
490 additions
and
97 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
package quickfix | ||
|
||
type EmptyApplication struct{} | ||
|
||
var _ Application = EmptyApplication{} | ||
|
||
func (e EmptyApplication) OnCreate(_ SessionID) { | ||
} | ||
|
||
func (e EmptyApplication) OnLogon(_ SessionID) { | ||
} | ||
|
||
func (e EmptyApplication) OnLogout(_ SessionID) { | ||
} | ||
|
||
func (e EmptyApplication) ToAdmin(_ *Message, _ SessionID) { | ||
} | ||
|
||
func (e EmptyApplication) ToApp(_ *Message, _ SessionID) error { | ||
return nil | ||
} | ||
|
||
func (e EmptyApplication) FromAdmin(_ *Message, _ SessionID) MessageRejectError { | ||
return nil | ||
} | ||
|
||
func (e EmptyApplication) FromApp(_ *Message, _ SessionID) MessageRejectError { | ||
return nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,37 @@ | ||
module github.com/quickfixgo/quickfix | ||
|
||
go 1.21 | ||
go 1.23 | ||
|
||
require ( | ||
github.com/mattn/go-sqlite3 v1.14.22 | ||
github.com/pires/go-proxyproto v0.7.0 | ||
github.com/phayes/freeport v0.0.0-20220201140144-74d24b5ae9f5 | ||
github.com/pires/go-proxyproto v0.8.0 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/quickfixgo/enum v0.1.0 | ||
github.com/quickfixgo/field v0.1.0 | ||
github.com/quickfixgo/fix44 v0.1.0 | ||
github.com/quickfixgo/tag v0.1.0 | ||
github.com/shopspring/decimal v1.4.0 | ||
github.com/stretchr/testify v1.8.4 | ||
go.mongodb.org/mongo-driver v1.15.0 | ||
golang.org/x/net v0.24.0 | ||
github.com/stretchr/testify v1.10.0 | ||
go.mongodb.org/mongo-driver v1.17.1 | ||
golang.org/x/net v0.32.0 | ||
) | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/golang/snappy v0.0.4 // indirect | ||
github.com/klauspost/compress v1.15.12 // indirect | ||
github.com/kr/text v0.2.0 // indirect | ||
github.com/montanaflynn/stats v0.6.6 // indirect | ||
github.com/kr/pretty v0.3.0 // indirect | ||
github.com/montanaflynn/stats v0.7.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/stretchr/objx v0.5.0 // indirect | ||
github.com/stretchr/objx v0.5.2 // indirect | ||
github.com/xdg-go/pbkdf2 v1.0.0 // indirect | ||
github.com/xdg-go/scram v1.1.2 // indirect | ||
github.com/xdg-go/stringprep v1.0.4 // indirect | ||
github.com/youmark/pkcs8 v0.0.0-20201027041543-1326539a0a0a // indirect | ||
golang.org/x/crypto v0.22.0 // indirect | ||
golang.org/x/sync v0.1.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
github.com/youmark/pkcs8 v0.0.0-20240726163527-a2c0da244d78 // indirect | ||
golang.org/x/crypto v0.30.0 // indirect | ||
golang.org/x/sync v0.10.0 // indirect | ||
golang.org/x/text v0.21.0 // indirect | ||
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.