blob: 6880876031c8f2ed6b01aa5f9efdc3cadce1268b [file] [log] [blame]
// Copyright (C) 2016 The Android Open Source Project
//
// Licensed 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.
package task_test
import (
"testing"
"android.googlesource.com/platform/tools/gpu/framework/assert"
"android.googlesource.com/platform/tools/gpu/framework/task"
"golang.org/x/net/context"
)
func TestPrepare(t *testing.T) {
ctx := assert.Context(t)
tester := testTask{}
handle, runner := task.Prepare(ctx, tester.run)
assert.For(ctx, "Ran before run").That(tester.ran).Equals(false)
assert.For(ctx, "Handle before run").That(handle.Fired()).Equals(false)
runner()
assert.For(ctx, "Ran after run").That(tester.ran).Equals(true)
assert.For(ctx, "Handle after run").That(handle.Fired()).Equals(true)
assert.For(ctx, "Prepare").ThatError(handle.Result()).Succeeded()
child, cancel := task.WithCancel(ctx)
cancel()
handle, runner = task.Prepare(child, tester.run)
runner()
assert.For(ctx, "Prepare after cancel").ThatError(handle.Result()).Equals(context.Canceled)
}