-
Notifications
You must be signed in to change notification settings - Fork 291
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27 from ackleymi/add-missing-test-defs
Adds resendreqchunksize and lastseqnumprocessed test suites
- Loading branch information
Showing
51 changed files
with
2,162 additions
and
501 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 |
---|---|---|
|
@@ -31,18 +31,118 @@ jobs: | |
version: v1.57.2 | ||
|
||
build: | ||
name: build | ||
name: Build Source | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
go: [1.21] | ||
steps: | ||
- name: Setup | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: ${{ matrix.go }} | ||
- name: Check out source | ||
uses: actions/checkout@v2 | ||
- name: Build | ||
run: make build-src | ||
|
||
unittest: | ||
name: Unit Tests | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
go: [1.21] | ||
steps: | ||
- name: Setup | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: ${{ matrix.go }} | ||
- name: Check out source | ||
uses: actions/checkout@v2 | ||
- name: Start MongoDB | ||
uses: supercharge/[email protected] | ||
with: | ||
mongodb-replica-set: replicaset | ||
- name: Unit test | ||
env: | ||
MONGODB_TEST_CXN: mongodb://localhost:27017 | ||
run: make test-ci | ||
|
||
servermem: | ||
name: Server MemoryStore Suite | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
go: [1.21] | ||
fix-version: | ||
- fix40 | ||
- fix41 | ||
- fix42 | ||
- fix43 | ||
- fix44 | ||
- fix50 | ||
- fix50sp1 | ||
- fix50sp2 | ||
steps: | ||
- name: Setup | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: ${{ matrix.go }} | ||
- name: Check out source | ||
uses: actions/checkout@v2 | ||
- name: Install ruby | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: '3.0' | ||
- name: Acceptance test | ||
env: | ||
GO111MODULE: on | ||
FIX_TEST: ${{ matrix.fix-version }} | ||
STORE_TYPE: memory | ||
ACCEPTANCE_SET: server | ||
run: make generate-ci && make build && make $FIX_TEST | ||
|
||
serverfile: | ||
name: Server FileStore Suite | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
go: [1.21] | ||
fix-version: | ||
- fix40 | ||
- fix41 | ||
- fix42 | ||
- fix43 | ||
- fix44 | ||
- fix50 | ||
- fix50sp1 | ||
- fix50sp2 | ||
steps: | ||
- name: Setup | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: ${{ matrix.go }} | ||
- name: Check out source | ||
uses: actions/checkout@v2 | ||
- name: Install ruby | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: '3.0' | ||
- name: Acceptance test | ||
env: | ||
GO111MODULE: on | ||
FIX_TEST: ${{ matrix.fix-version }} | ||
STORE_TYPE: file | ||
ACCEPTANCE_SET: server | ||
run: make generate-ci && make build && make $FIX_TEST | ||
|
||
servermongo: | ||
name: Server MongoStore Suite | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
go: [1.21] | ||
store-type: | ||
- | ||
- memory | ||
- file | ||
- mongo | ||
fix-version: | ||
- | ||
- fix40 | ||
- fix41 | ||
- fix42 | ||
|
@@ -66,15 +166,107 @@ jobs: | |
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: '3.0' | ||
- name: Unit test | ||
- name: Acceptance test | ||
env: | ||
GO111MODULE: on | ||
MONGODB_TEST_CXN: mongodb://localhost:27017 | ||
FIX_TEST: ${{ matrix.fix-version }} | ||
STORE_TYPE: mongo | ||
ACCEPTANCE_SET: server | ||
run: make generate-ci && make build && make $FIX_TEST | ||
|
||
resendreqchunksize: | ||
name: ResendRequestChunkSize Suite | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
go: [1.21] | ||
fix-version: | ||
- fix40 | ||
- fix41 | ||
- fix42 | ||
- fix43 | ||
- fix44 | ||
- fix50 | ||
- fix50sp1 | ||
- fix50sp2 | ||
steps: | ||
- name: Setup | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: ${{ matrix.go }} | ||
- name: Check out source | ||
uses: actions/checkout@v2 | ||
- name: Install ruby | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: '3.0' | ||
- name: Acceptance test | ||
env: | ||
GO111MODULE: on | ||
FIX_TEST: ${{ matrix.fix-version }} | ||
STORE_TYPE: ${{ matrix.store-type }} | ||
run: if [ -z $FIX_TEST ] && [ -z $STORE_TYPE ]; then make build-src && make test-ci; fi | ||
STORE_TYPE: memory | ||
ACCEPTANCE_SET: resendreqchunksize | ||
run: make generate-ci && make build && make $FIX_TEST | ||
|
||
lastseqnumprocessed: | ||
name: LastSeqNumProcessed Suite | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
go: [1.21] | ||
fix-version: | ||
- fix42 | ||
- fix43 | ||
- fix44 | ||
- fix50 | ||
- fix50sp1 | ||
- fix50sp2 | ||
steps: | ||
- name: Setup | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: ${{ matrix.go }} | ||
- name: Check out source | ||
uses: actions/checkout@v2 | ||
- name: Install ruby | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: '3.0' | ||
- name: Acceptance test | ||
env: | ||
GO111MODULE: on | ||
MONGODB_TEST_CXN: mongodb://localhost:27017 | ||
FIX_TEST: ${{ matrix.fix-version }} | ||
STORE_TYPE: ${{ matrix.store-type }} | ||
run: if [ $FIX_TEST ] && [ $STORE_TYPE ]; then make generate-ci && make build && make $FIX_TEST; fi | ||
STORE_TYPE: memory | ||
ACCEPTANCE_SET: lastseqnumprocessed | ||
run: make generate-ci && make build && make $FIX_TEST | ||
|
||
# nextexpectedseqnum: | ||
# name: NextExpectedSeqNum Suite | ||
# runs-on: ubuntu-latest | ||
# strategy: | ||
# matrix: | ||
# go: [1.21] | ||
# fix-version: | ||
# - fix44 | ||
# - fix50 | ||
# - fix50sp1 | ||
# - fix50sp2 | ||
# steps: | ||
# - name: Setup | ||
# uses: actions/setup-go@v2 | ||
# with: | ||
# go-version: ${{ matrix.go }} | ||
# - name: Check out source | ||
# uses: actions/checkout@v2 | ||
# - name: Install ruby | ||
# uses: ruby/setup-ruby@v1 | ||
# with: | ||
# ruby-version: '3.0' | ||
# - name: Acceptance test | ||
# env: | ||
# GO111MODULE: on | ||
# FIX_TEST: ${{ matrix.fix-version }} | ||
# STORE_TYPE: memory | ||
# ACCEPTANCE_SET: nextexpectedseqnum | ||
# run: make generate-ci && make build && make $FIX_TEST |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[DEFAULT] | ||
SocketAcceptPort=5003 | ||
SenderCompID=ISLD | ||
TargetCompID=TW | ||
ResetOnLogon=Y | ||
FileLogPath=tmp | ||
|
||
[SESSION] | ||
BeginString=FIX.4.2 | ||
DataDictionary=../spec/FIX42.xml | ||
EnableLastMsgSeqNumProcessed=Y |
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,11 @@ | ||
[DEFAULT] | ||
SocketAcceptPort=5004 | ||
SenderCompID=ISLD | ||
TargetCompID=TW | ||
ResetOnLogon=Y | ||
FileLogPath=tmp | ||
|
||
[SESSION] | ||
BeginString=FIX.4.3 | ||
DataDictionary=../spec/FIX43.xml | ||
EnableLastMsgSeqNumProcessed=Y |
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,11 @@ | ||
[DEFAULT] | ||
SocketAcceptPort=5005 | ||
SenderCompID=ISLD | ||
TargetCompID=TW | ||
ResetOnLogon=Y | ||
FileLogPath=tmp | ||
|
||
[SESSION] | ||
BeginString=FIX.4.4 | ||
DataDictionary=../spec/FIX44.xml | ||
EnableLastMsgSeqNumProcessed=Y |
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,14 @@ | ||
[DEFAULT] | ||
SocketAcceptPort=5006 | ||
SenderCompID=ISLD | ||
TargetCompID=TW | ||
ResetOnLogon=Y | ||
FileLogPath=tmp | ||
|
||
[SESSION] | ||
BeginString=FIXT.1.1 | ||
SessionQualifier=FIX50 | ||
DefaultApplVerID=FIX.5.0 | ||
TransportDataDictionary=../spec/FIXT11.xml | ||
AppDataDictionary=../spec/FIX50.xml | ||
EnableLastMsgSeqNumProcessed=Y |
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,14 @@ | ||
[DEFAULT] | ||
SocketAcceptPort=5007 | ||
SenderCompID=ISLD | ||
TargetCompID=TW | ||
ResetOnLogon=Y | ||
FileLogPath=tmp | ||
|
||
[SESSION] | ||
BeginString=FIXT.1.1 | ||
SessionQualifier=FIX50SP1 | ||
DefaultApplVerID=FIX.5.0SP1 | ||
TransportDataDictionary=../spec/FIXT11.xml | ||
AppDataDictionary=../spec/FIX50SP1.xml | ||
EnableLastMsgSeqNumProcessed=Y |
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,14 @@ | ||
[DEFAULT] | ||
SocketAcceptPort=5008 | ||
SenderCompID=ISLD | ||
TargetCompID=TW | ||
ResetOnLogon=Y | ||
FileLogPath=tmp | ||
|
||
[SESSION] | ||
BeginString=FIXT.1.1 | ||
SessionQualifier=FIX50SP2 | ||
DefaultApplVerID=FIX.5.0SP2 | ||
TransportDataDictionary=../spec/FIXT11.xml | ||
AppDataDictionary=../spec/FIX50SP2.xml | ||
EnableLastMsgSeqNumProcessed=Y |
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,11 @@ | ||
[DEFAULT] | ||
SocketAcceptPort=5001 | ||
SenderCompID=ISLD | ||
TargetCompID=TW | ||
ResetOnLogon=Y | ||
FileLogPath=tmp | ||
|
||
[SESSION] | ||
BeginString=FIX.4.0 | ||
DataDictionary=../spec/FIX40.xml | ||
ResendRequestChunkSize=5 |
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,11 @@ | ||
[DEFAULT] | ||
SocketAcceptPort=5002 | ||
SenderCompID=ISLD | ||
TargetCompID=TW | ||
ResetOnLogon=Y | ||
FileLogPath=tmp | ||
|
||
[SESSION] | ||
BeginString=FIX.4.1 | ||
DataDictionary=../spec/FIX41.xml | ||
ResendRequestChunkSize=5 |
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 |
---|---|---|
|
@@ -8,3 +8,4 @@ FileLogPath=tmp | |
[SESSION] | ||
BeginString=FIX.4.2 | ||
DataDictionary=../spec/FIX42.xml | ||
ResendRequestChunkSize=5 |
Oops, something went wrong.