blob: f0c8c2f0fc5f617253112ae52666a32f0ea6153c [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 lib
import (
"io/ioutil"
"testing"
)
func TestConfigInit(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 Config
if err := config.Init(&path); err != nil {
t.Errorf("%v(): got %v", t.Name(), err)
}
want := "."
if config.BaseDir != want {
t.Errorf("%v(): got %v, want %v", t.Name(), config.BaseDir, want)
}
}