Skip to content

Commit

Permalink
Add deflate compression to binary increment tests
Browse files Browse the repository at this point in the history
  • Loading branch information
FinleyMcIlwaine committed Jan 23, 2024
1 parent 5141993 commit e02861c
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions test-grapesy/Test/Sanity/StreamingType/NonStreaming.hs
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,11 @@ tests = testGroup "Test.Sanity.StreamingType.NonStreaming" [
clientCompr = Compr.require Compr.gzip
, serverCompr = Compr.require Compr.gzip
}
, testCaseInfo "deflate" $
test_increment def {
clientCompr = Compr.require Compr.deflate
, serverCompr = Compr.require Compr.deflate
}
, testCaseInfo "serverUnsupported" $
test_increment def {
clientCompr = Compr.require Compr.gzip
Expand All @@ -94,6 +99,11 @@ tests = testGroup "Test.Sanity.StreamingType.NonStreaming" [
clientCompr = Compr.none
, serverCompr = Compr.require Compr.gzip
}
, testCaseInfo "mismatch" $
test_increment def {
clientCompr = Compr.require Compr.deflate
, serverCompr = Compr.require Compr.gzip
}
]
]
]
Expand Down

0 comments on commit e02861c

Please sign in to comment.