@@ -115,38 +115,6 @@ func removeContentEncoding(r *http.Response) {
115
115
}
116
116
}
117
117
118
- func decompressGzip (r * http.Response ) error {
119
- reader , err := gzip .NewReader (r .Body )
120
- if err != nil {
121
- return err
122
- }
123
- defer reader .Close ()
124
- buf := new (bytes.Buffer )
125
-
126
- if _ , err := io .Copy (buf , reader ); err != nil {
127
- return err
128
- }
129
- r .Body = io .NopCloser (buf )
130
- r .ContentLength = int64 (buf .Len ())
131
- r .Header ["Content-Length" ] = []string {fmt .Sprintf ("%v" , r .ContentLength )}
132
- removeContentEncoding (r )
133
- return nil
134
- }
135
-
136
- func decompressDeflate (r * http.Response ) error {
137
- reader := flate .NewReader (r .Body )
138
- defer reader .Close ()
139
- buf := new (bytes.Buffer )
140
- if _ , err := io .Copy (buf , reader ); err != nil {
141
- return err
142
- }
143
- r .Body = io .NopCloser (buf )
144
- r .ContentLength = int64 (buf .Len ())
145
- r .Header ["Content-Length" ] = []string {fmt .Sprintf ("%v" , r .ContentLength )}
146
- removeContentEncoding (r )
147
- return nil
148
- }
149
-
150
118
func compareSnapshots (a * http.Response , b * http.Response ) int {
151
119
methodCmp := strings .Compare (a .Request .Method , b .Request .Method )
152
120
if methodCmp != 0 {
@@ -680,6 +648,10 @@ func (g *atlasE2ETestGenerator) snapshotServer() {
680
648
681
649
snapshot := g .prepareSnapshot (resp )
682
650
651
+ if compareSnapshots (snapshot , g .lastData ) == 0 {
652
+ return nil // skip if the response is the same
653
+ }
654
+
683
655
g .storeSnapshot (snapshot )
684
656
685
657
return nil
0 commit comments