/**
# Copyright (c) 2021, NVIDIA CORPORATION.  All rights reserved.
#
# 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 discover

import (
	"fmt"
	"testing"

	"github.com/NVIDIA/nvidia-container-toolkit/internal/discover/csv"
	"github.com/NVIDIA/nvidia-container-toolkit/internal/lookup"
	testlog "github.com/sirupsen/logrus/hooks/test"
	"github.com/stretchr/testify/require"
)

func TestNewFromMountSpec(t *testing.T) {
	logger, _ := testlog.NewNullLogger()

	locators := map[csv.MountSpecType]lookup.Locator{
		"dev": &lookup.LocatorMock{},
		"lib": &lookup.LocatorMock{},
	}

	testCases := []struct {
		description        string
		root               string
		targets            []*csv.MountSpec
		expectedError      error
		expectedDiscoverer Discover
	}{
		{
			description:        "empty targets returns None discoverer list",
			expectedDiscoverer: &None{},
		},
		{
			description: "unexpected locator returns error",
			targets: []*csv.MountSpec{
				{
					Type: "foo",
					Path: "bar",
				},
			},
			expectedError: fmt.Errorf("no locator defined for foo"),
		},
		{
			description: "creates discoverers based on type",
			targets: []*csv.MountSpec{
				{
					Type: "dev",
					Path: "dev0",
				},
				{
					Type: "lib",
					Path: "lib0",
				},
				{
					Type: "dev",
					Path: "dev1",
				},
			},
			expectedDiscoverer: &list{
				discoverers: []Discover{
					(*charDevices)(
						&mounts{
							logger:   logger,
							lookup:   locators["dev"],
							root:     "/",
							required: []string{"dev0", "dev1"},
						},
					),
					&mounts{
						logger:   logger,
						lookup:   locators["lib"],
						root:     "/",
						required: []string{"lib0"},
					},
				},
			},
		},
		{
			description: "sets root",
			targets: []*csv.MountSpec{
				{
					Type: "dev",
					Path: "dev0",
				},
				{
					Type: "lib",
					Path: "lib0",
				},
				{
					Type: "dev",
					Path: "dev1",
				},
			},
			root: "/some/root",
			expectedDiscoverer: &list{
				discoverers: []Discover{
					(*charDevices)(
						&mounts{
							logger:   logger,
							lookup:   locators["dev"],
							root:     "/some/root",
							required: []string{"dev0", "dev1"},
						},
					),
					&mounts{
						logger:   logger,
						lookup:   locators["lib"],
						root:     "/some/root",
						required: []string{"lib0"},
					},
				},
			},
		},
	}

	for _, tc := range testCases {
		t.Run(tc.description, func(t *testing.T) {
			discoverer, err := newFromMountSpecs(logger, locators, tc.root, tc.targets)
			if tc.expectedError != nil {
				require.Error(t, err)
				return
			}
			require.NoError(t, err)
			require.EqualValues(t, tc.expectedDiscoverer, discoverer)
		})
	}
}