Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Repeating Group Tags Ordering #585

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
65 changes: 65 additions & 0 deletions message_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,13 @@

import (
"bytes"
"fmt"
"log"
"reflect"
"testing"
"time"

//fix44nos "github.com/quickfixgo/quickfix/gen/fix44/newordersingle"

Check failure on line 26 in message_test.go

View workflow job for this annotation

GitHub Actions / Linter

Comment should end in a period (godot)
"github.com/stretchr/testify/suite"

"github.com/quickfixgo/quickfix/datadictionary"
Expand Down Expand Up @@ -232,6 +236,41 @@
s.Equal(string(dest.Bytes()), renderedString)
}

func (s *MessageSuite) TestRepeatingGroupTags() {
//nos := fix44nos.New(
// field2.NewClOrdID("1234"),
// field2.NewSide(enum.Side_BUY),
// field2.NewTransactTime(time.Now()),
// field2.NewOrdType(enum.OrdType_LIMIT),
//)
//partyIDsgrp := fix44nos.NewNoPartyIDsRepeatingGroup()
//partyIDs := partyIDsgrp.Add()
//partyIDs.SetPartyID("party-in-da-house")
//partyIDs.SetPartyRole(enum.PartyRole_CLIENT_ID)
//nos.SetNoPartyIDs(partyIDsgrp)
//qfMsg := NewMessage()
//err := ParseMessage(qfMsg, bytes.NewBuffer(nos.ToMessage().Bytes()))
//s.NotNil(err)

//msg := NewMessage()
//msg.Header.SetField(tag.ClOrdID, FIXString("1234"))
//msg.Header.SetField(tag.BeginString, FIXString("FIX.4.3"))
//msg.Header.SetField(tag.Side, FIXString("BUY"))
//msg.Header.SetField(tag.TransactTime, FIXUTCTimestamp{Time: time.Now()})
//msg.Header.SetField(tag.OrdType, FIXString("LIMIT"))
//msg.Header.SetField(tag.PartyID, FIXString("party-in-da-house"))
//msg.Header.SetField(tag.PartyRole, FIXString("CLIENT_ID"))

nos := createFIX44NewOrderSingle()
if err := ParseMessage(s.msg, bytes.NewBuffer(nos.ToMessage().Bytes())); err != nil {
log.Fatal(err)
}
// Should have different outputs, one with the correct format for PartyIDRepeatingGroup and one with a sorted format
fmt.Println(string(s.msg.Bytes()))
fmt.Println(string(s.msg.build()))
s.Equal(string(s.msg.Bytes()), string(s.msg.build()))
}

func checkFieldInt(s *MessageSuite, fields FieldMap, tag, expected int) {
toCheck, _ := fields.GetInt(Tag(tag))
s.Equal(expected, toCheck)
Expand All @@ -242,3 +281,29 @@
s.NoError(err)
s.Equal(expected, toCheck)
}

func createFIX44NewOrderSingle() *Message {
msg := NewMessage()
msg.Header.SetField(tagMsgType, FIXString("D"))
msg.Header.SetField(tagBeginString, FIXString("FIX.4.4"))
msg.Header.SetField(tagBodyLength, FIXString("0"))
msg.Header.SetField(tagSenderCompID, FIXString("0"))
msg.Header.SetField(tagTargetCompID, FIXString("0"))
msg.Header.SetField(tagMsgSeqNum, FIXString("0"))
msg.Header.SetField(tagSendingTime, FIXUTCTimestamp{Time: time.Now()})

//msg.Body.SetField(Tag(11), FIXString("A"))
//msg.Body.SetField(Tag(21), FIXString("1"))
//msg.Body.SetField(Tag(55), FIXString("A"))
//msg.Body.SetField(Tag(54), FIXString("1"))
//msg.Body.SetField(Tag(38), FIXInt(5))
//msg.Body.SetField(Tag(40), FIXString("1"))
msg.Body.SetField(Tag(60), FIXUTCTimestamp{Time: time.Now()})
msg.Body.SetField(Tag(453), FIXInt(1))
msg.Body.SetField(Tag(448), FIXString("testID"))
msg.Body.SetField(Tag(452), FIXInt(3))

msg.Trailer.SetField(tagCheckSum, FIXString("000"))

return msg
}
Loading