From 1f99fde1c591c45ffdbfa6e7ff185b757722c6f3 Mon Sep 17 00:00:00 2001 From: Daniele Rondina Date: Fri, 1 May 2020 15:26:53 +0200 Subject: [PATCH] Add config test suite --- pkg/config/config_suite_test.go | 33 ++++++++++++++++++ pkg/config/config_test.go | 60 +++++++++++++++++++++++++++++++++ 2 files changed, 93 insertions(+) create mode 100644 pkg/config/config_suite_test.go create mode 100644 pkg/config/config_test.go diff --git a/pkg/config/config_suite_test.go b/pkg/config/config_suite_test.go new file mode 100644 index 00000000..fb67b15e --- /dev/null +++ b/pkg/config/config_suite_test.go @@ -0,0 +1,33 @@ +// Copyright © 2019-2020 Ettore Di Giacinto +// Daniele Rondina +// +// This program is free software; you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation; either version 2 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License along +// with this program; if not, see . + +package config_test + +import ( + "testing" + + . "github.com/mudler/luet/cmd" + config "github.com/mudler/luet/pkg/config" + + . "github.com/onsi/ginkgo" + . "github.com/onsi/gomega" +) + +func TestSolver(t *testing.T) { + RegisterFailHandler(Fail) + LoadConfig(config.LuetCfg) + RunSpecs(t, "Config Suite") +} diff --git a/pkg/config/config_test.go b/pkg/config/config_test.go new file mode 100644 index 00000000..7996d6d3 --- /dev/null +++ b/pkg/config/config_test.go @@ -0,0 +1,60 @@ +// Copyright © 2019-2020 Ettore Di Giacinto +// Daniele Rondina +// +// This program is free software; you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation; either version 2 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License along +// with this program; if not, see . + +package config_test + +import ( + "os" + "path/filepath" + "strings" + + config "github.com/mudler/luet/pkg/config" + "github.com/mudler/luet/pkg/helpers" + + . "github.com/onsi/ginkgo" + . "github.com/onsi/gomega" +) + +var _ = Describe("Config", func() { + + Context("Simple temporary directory creation", func() { + + It("Create Temporary directory", func() { + // PRE: tmpdir_base contains default value. + + tmpDir, err := config.LuetCfg.GetSystem().TempDir("test1") + Expect(err).ToNot(HaveOccurred()) + Expect(strings.HasPrefix(tmpDir, filepath.Join(os.TempDir(), "tmpluet"))).To(BeTrue()) + Expect(strings.HasPrefix(tmpDir, filepath.Join(os.TempDir(), "tmpluet"))).To(BeTrue()) + Expect(helpers.Exists(tmpDir)).To(BeTrue()) + + defer os.RemoveAll(tmpDir) + }) + + It("Create Temporary file", func() { + // PRE: tmpdir_base contains default value. + + tmpFile, err := config.LuetCfg.GetSystem().TempFile("testfile1") + Expect(err).ToNot(HaveOccurred()) + Expect(strings.HasPrefix(tmpFile.Name(), filepath.Join(os.TempDir(), "tmpluet"))).To(BeTrue()) + Expect(helpers.Exists(tmpFile.Name())).To(BeTrue()) + + defer os.Remove(tmpFile.Name()) + }) + + }) + +})