Check for protobuf mimetype in apiserver

This commit is contained in:
Clayton Coleman 2016-04-16 17:11:43 -04:00
parent 86fb71aba7
commit 58afaaafb1

View File

@ -1233,11 +1233,11 @@ func TestMetadata(t *testing.T) {
matches[s] = i + 1 matches[s] = i + 1
} }
} }
if matches["text/plain,application/json,application/yaml"] == 0 || if matches["text/plain,application/json,application/yaml,application/vnd.kubernetes.protobuf"] == 0 ||
matches["application/json,application/yaml"] == 0 || matches["application/json,application/yaml,application/vnd.kubernetes.protobuf"] == 0 ||
matches["application/json"] == 0 || matches["application/json,application/vnd.kubernetes.protobuf"] == 0 ||
matches["*/*"] == 0 || matches["*/*"] == 0 ||
len(matches) != 4 { len(matches) != 5 {
t.Errorf("unexpected mime types: %v", matches) t.Errorf("unexpected mime types: %v", matches)
} }
} }