blob: 87c22b680c4af41f307629d5e9da5097c853450f [file] [log] [blame]
// Copyright 2020 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package main
import (
"io/ioutil"
"testing"
"go.fuchsia.dev/fuchsia/tools/check-licenses/lib"
)
func TestMainLoadConfig(t *testing.T) {
path := "config.json"
json := `{"filesRegex":[],"skipFiles":[".gitignore"],"skipDirs":[".git"],"textExtensionList":["go"],"maxReadSize":6144,"separatorWidth":80,"outputFilePrefix":"NOTICE","outputFileExtension":"txt","product":"astro","singleLicenseFiles":["LICENSE"],"goldenLicenses":"golden","licensePatternDir":"golden/","baseDir":".","target":"all","logLevel":"verbose"}`
if err := ioutil.WriteFile(path, []byte(json), 0644); err != nil {
t.Errorf("%v(): got %v", t.Name(), err)
}
var config lib.Config
if err := config.Init(&path); err != nil {
t.Errorf("%v(): got %v", t.Name(), err)
}
}