github.com/blend/go-sdk@v1.20220411.3/cron/times_schedule_test.go (about)

     1  /*
     2  
     3  Copyright (c) 2022 - Present. Blend Labs, Inc. All rights reserved
     4  Use of this source code is governed by a MIT license that can be found in the LICENSE file.
     5  
     6  */
     7  
     8  package cron
     9  
    10  import (
    11  	"testing"
    12  	"time"
    13  
    14  	"github.com/blend/go-sdk/assert"
    15  )
    16  
    17  func TestTimesSchedule(t *testing.T) {
    18  	t.Parallel()
    19  	its := assert.New(t)
    20  
    21  	ts := time.Date(2020, 01, 23, 12, 11, 10, 9, time.UTC)
    22  	schedule := Times(5, Every(time.Millisecond))
    23  	its.Equal(ts.Add(time.Millisecond), schedule.Next(ts))
    24  	its.Equal(ts.Add(time.Millisecond), schedule.Next(ts))
    25  	its.Equal(ts.Add(time.Millisecond), schedule.Next(ts))
    26  	its.Equal(ts.Add(time.Millisecond), schedule.Next(ts))
    27  	its.Equal(ts.Add(time.Millisecond), schedule.Next(ts))
    28  	its.True(schedule.Next(ts).IsZero())
    29  }