X-Git-Url: https://git.r.bdr.sh/rbdr/mobius/blobdiff_plain/9fa62676376a5bbd907ec6e7c8ea3b95db4ee10e..5853654f0a618dc89f893992a7f0d211456483f8:/hotline/transaction_handlers_test.go diff --git a/hotline/transaction_handlers_test.go b/hotline/transaction_handlers_test.go index 4dee0b5..69dedf9 100644 --- a/hotline/transaction_handlers_test.go +++ b/hotline/transaction_handlers_test.go @@ -232,21 +232,18 @@ func TestHandleGetUserNameList(t *testing.T) { Icon: []byte{0, 2}, Flags: []byte{0, 3}, UserName: []byte{0, 4}, - Agreed: true, }, uint16(2): { ID: &[]byte{0, 2}, Icon: []byte{0, 2}, Flags: []byte{0, 3}, UserName: []byte{0, 4}, - Agreed: true, }, uint16(3): { ID: &[]byte{0, 3}, Icon: []byte{0, 2}, Flags: []byte{0, 3}, UserName: []byte{0, 4}, - Agreed: false, }, }, }, @@ -3684,3 +3681,58 @@ func TestHandleInviteNewChat(t *testing.T) { }) } } + +func TestHandleGetNewsArtData(t *testing.T) { + type args struct { + cc *ClientConn + t *Transaction + } + tests := []struct { + name string + args args + wantRes []Transaction + wantErr assert.ErrorAssertionFunc + }{ + { + name: "when user does not have required permission", + args: args{ + cc: &ClientConn{ + Account: &Account{ + Access: func() accessBitmap { + var bits accessBitmap + return bits + }(), + }, + Server: &Server{ + Accounts: map[string]*Account{}, + }, + }, + t: NewTransaction( + tranGetNewsArtData, &[]byte{0, 1}, + ), + }, + wantRes: []Transaction{ + { + Flags: 0x00, + IsReply: 0x01, + Type: []byte{0, 0x00}, + ID: []byte{0x9a, 0xcb, 0x04, 0x42}, + ErrorCode: []byte{0, 0, 0, 1}, + Fields: []Field{ + NewField(fieldError, []byte("You are not allowed to read news.")), + }, + }, + }, + wantErr: assert.NoError, + }, + } + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + gotRes, err := HandleGetNewsArtData(tt.args.cc, tt.args.t) + if !tt.wantErr(t, err, fmt.Sprintf("HandleGetNewsArtData(%v, %v)", tt.args.cc, tt.args.t)) { + return + } + tranAssertEqual(t, tt.wantRes, gotRes) + }) + } +}