You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/internal/billing/options_test.go

35 lines
772 B

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package billing
import (
"testing"
"time"
"github.com/stretchr/testify/assert"
)
// Test_GetOpts provides unit tests for GetOpts and all the options
func Test_GetOpts(t *testing.T) {
t.Parallel()
oneMonthAgo := time.Now().AddDate(0, -1, 0)
t.Run("WithStartTime", func(t *testing.T) {
assert := assert.New(t)
opts := getOpts(WithStartTime(&oneMonthAgo))
testOpts := getDefaultOptions()
testOpts.withStartTime = &oneMonthAgo
assert.Equal(opts, testOpts)
})
t.Run("WithEndTime", func(t *testing.T) {
assert := assert.New(t)
opts := getOpts(WithEndTime(&oneMonthAgo))
testOpts := getDefaultOptions()
testOpts.withEndTime = &oneMonthAgo
assert.Equal(opts, testOpts)
})
}