github.com/GoogleContainerTools/skaffold@v1.39.18/pkg/skaffold/event/v2/application_logs_test.go (about)

     1  /*
     2  Copyright 2021 The Skaffold Authors
     3  
     4  Licensed under the Apache License, Version 2.0 (the "License");
     5  you may not use this file except in compliance with the License.
     6  You may obtain a copy of the License at
     7  
     8      http://www.apache.org/licenses/LICENSE-2.0
     9  
    10  Unless required by applicable law or agreed to in writing, software
    11  distributed under the License is distributed on an "AS IS" BASIS,
    12  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    13  See the License for the specific language governing permissions and
    14  limitations under the License.
    15  */
    16  
    17  package v2
    18  
    19  import (
    20  	"testing"
    21  
    22  	"github.com/GoogleContainerTools/skaffold/pkg/skaffold/schema/latest"
    23  	proto "github.com/GoogleContainerTools/skaffold/proto/v2"
    24  )
    25  
    26  func TestHandleApplicationLogEvent(t *testing.T) {
    27  	testHandler := newHandler()
    28  	testHandler.state = emptyState(mockCfg([]latest.Pipeline{{}}, "test"))
    29  
    30  	messages := []string{
    31  		"hi!",
    32  		"how's it going",
    33  		"hope you're well",
    34  	}
    35  
    36  	// ensure that messages sent through the ApplicationLog function are populating the event log
    37  	for _, message := range messages {
    38  		testHandler.handleApplicationLogEvent(&proto.ApplicationLogEvent{
    39  			ContainerName: "containerName-0",
    40  			PodName:       "pod-0",
    41  			Message:       message,
    42  		})
    43  	}
    44  	wait(t, func() bool {
    45  		testHandler.applicationLogsLock.Lock()
    46  		logLen := len(testHandler.applicationLogs)
    47  		testHandler.applicationLogsLock.Unlock()
    48  		return logLen == len(messages)
    49  	})
    50  }