mirror of
https://github.com/coder/coder.git
synced 2026-09-24 15:04:27 +08:00
* Add templates
* Move API structs to codersdk
* Back to green tests!
* It all works, but now with tea! 🧋
* It works!
* Add cancellation to provisionerd
* Tests pass!
* Add deletion of workspaces and projects
* Fix agent lock
* Add clog
* Fix linting errors
* Remove unused CLI tests
* Rename daemon to start
* Fix leaking command
* Fix promptui test
* Update agent connection frequency
* Skip login tests on Windows
* Increase tunnel connect timeout
* Fix templater
* Lower test requirements
* Fix embed
* Disable promptui tests for Windows
* Fix write newline
* Fix PTY write newline
* Fix CloseReader
* Fix compilation on Windows
* Fix linting error
* Remove bubbletea
* Cleanup readwriter
* Use embedded templates instead of serving over API
* Move templates to examples
* Improve workspace create flow
* Fix Windows build
* Fix tests
* Fix linting errors
* Fix untar with extracting max size
* Fix newline char
38 lines
769 B
Go
38 lines
769 B
Go
package provisionersdk_test
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"os"
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/coder/coder/provisionersdk"
|
|
)
|
|
|
|
func TestTar(t *testing.T) {
|
|
t.Parallel()
|
|
dir := t.TempDir()
|
|
file, err := ioutil.TempFile(dir, "")
|
|
require.NoError(t, err)
|
|
_ = file.Close()
|
|
_, err = provisionersdk.Tar(dir)
|
|
require.NoError(t, err)
|
|
}
|
|
|
|
func TestUntar(t *testing.T) {
|
|
t.Parallel()
|
|
dir := t.TempDir()
|
|
file, err := ioutil.TempFile(dir, "")
|
|
require.NoError(t, err)
|
|
_ = file.Close()
|
|
archive, err := provisionersdk.Tar(dir)
|
|
require.NoError(t, err)
|
|
dir = t.TempDir()
|
|
err = provisionersdk.Untar(dir, archive)
|
|
require.NoError(t, err)
|
|
_, err = os.Stat(filepath.Join(dir, filepath.Base(file.Name())))
|
|
require.NoError(t, err)
|
|
}
|