// SPDX-License-Identifier: Apache-2.0 // // The OpenSearch Contributors require contributions made to // this file be licensed under the Apache-2.0 license or a // compatible open source license. // // Modifications Copyright OpenSearch Contributors. See // GitHub history for details. // Licensed to Elasticsearch B.V. under one or more contributor // license agreements. See the NOTICE file distributed with // this work for additional information regarding copyright // ownership. Elasticsearch B.V. licenses this file to you under // the Apache License, Version 2.0 (the "License"); you may // not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, // software distributed under the License is distributed on an // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY // KIND, either express or implied. See the License for the // specific language governing permissions and limitations // under the License. //go:build !integration package opensearchtransport_test import ( "bytes" "io" "net/http" "net/url" "testing" "github.com/opensearch-project/opensearch-go/v2/opensearchtransport" ) func BenchmarkTransportLogger(b *testing.B) { b.ReportAllocs() b.Run("Text", func(b *testing.B) { for i := 0; i < b.N; i++ { tp, _ := opensearchtransport.New(opensearchtransport.Config{ URLs: []*url.URL{{Scheme: "http", Host: "foo"}}, Transport: newFakeTransport(b), Logger: &opensearchtransport.TextLogger{Output: io.Discard}, }) req, _ := http.NewRequest(http.MethodGet, "/abc", nil) resp, err := tp.Perform(req) if err != nil { b.Fatalf("Unexpected error: %s", err) } if resp.Body != nil { resp.Body.Close() } } }) b.Run("Text-Body", func(b *testing.B) { for i := 0; i < b.N; i++ { tp, _ := opensearchtransport.New(opensearchtransport.Config{ URLs: []*url.URL{{Scheme: "http", Host: "foo"}}, Transport: newFakeTransport(b), Logger: &opensearchtransport.TextLogger{ Output: io.Discard, EnableRequestBody: true, EnableResponseBody: true, }, }) req, _ := http.NewRequest(http.MethodGet, "/abc", nil) res, err := tp.Perform(req) if err != nil { b.Fatalf("Unexpected error: %s", err) } res.Body.Close() body, err := io.ReadAll(res.Body) if err != nil { b.Fatalf("Error reading response body: %s", err) } res.Body = io.NopCloser(bytes.NewBuffer(body)) if len(body) < 13 { b.Errorf("Error reading response body bytes, want=13, got=%d", len(body)) } } }) b.Run("JSON", func(b *testing.B) { for i := 0; i < b.N; i++ { tp, _ := opensearchtransport.New(opensearchtransport.Config{ URLs: []*url.URL{{Scheme: "http", Host: "foo"}}, Transport: newFakeTransport(b), Logger: &opensearchtransport.JSONLogger{Output: io.Discard}, }) req, _ := http.NewRequest(http.MethodGet, "/abc", nil) resp, err := tp.Perform(req) if err != nil { b.Fatalf("Unexpected error: %s", err) } if resp != nil && resp.Body != nil { resp.Body.Close() } } }) b.Run("JSON-Body", func(b *testing.B) { for i := 0; i < b.N; i++ { tp, _ := opensearchtransport.New(opensearchtransport.Config{ URLs: []*url.URL{{Scheme: "http", Host: "foo"}}, Transport: newFakeTransport(b), Logger: &opensearchtransport.JSONLogger{ Output: io.Discard, EnableRequestBody: true, EnableResponseBody: true, }, }) req, _ := http.NewRequest(http.MethodGet, "/abc", nil) resp, err := tp.Perform(req) if err != nil { b.Fatalf("Unexpected error: %s", err) } if resp != nil && resp.Body != nil { resp.Body.Close() } } }) }