mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-03-19 21:28:28 +02:00
We need to fetch our list of tests both outside of our test binary and within. We need to get the list from within so that we can run the code that drives the test and runs assertions. To get the list of tests we need to know where the root of the lazygit repo is, given that the tests live in files under that root. So far, we've used this GetLazyRootDirectory() function for that, but it assumes that we're not in a test directory (it just looks for the first .git dir it can find). Because we didn't want to properly fix this before, we've been setting the working directory of the test command to the lazygit root, and using the --path CLI arg to override it when the test itself ran. This was a terrible hack. Now, we're passing the lazygit root directory as an env var to the integration test, so that we can set the working directory to the actual path of the test repo; removing the need to use the --path arg.
73 lines
2.0 KiB
Go
73 lines
2.0 KiB
Go
package worktree
|
|
|
|
import (
|
|
"github.com/jesseduffield/lazygit/pkg/config"
|
|
. "github.com/jesseduffield/lazygit/pkg/integration/components"
|
|
)
|
|
|
|
// Can't think of a better name than 'dotfile' repo: I'm using that
|
|
// because that's the case we're typically dealing with.
|
|
|
|
var DotfileBareRepo = NewIntegrationTest(NewIntegrationTestArgs{
|
|
Description: "Open lazygit in the worktree of a dotfile bare repo and add a file and commit",
|
|
ExtraCmdArgs: []string{"--git-dir={{.actualPath}}/.bare", "--work-tree={{.actualPath}}/repo"},
|
|
Skip: false,
|
|
SetupConfig: func(config *config.AppConfig) {},
|
|
SetupRepo: func(shell *Shell) {
|
|
// we're going to have a directory structure like this:
|
|
// project
|
|
// - .bare
|
|
// - repo (the worktree)
|
|
//
|
|
// The first repo is called 'repo' because that's the
|
|
// directory that all lazygit tests start in
|
|
|
|
// Delete the .git dir that all tests start with by default
|
|
shell.DeleteFile(".git")
|
|
|
|
// Create a bare repo in the parent directory
|
|
shell.RunCommand([]string{"git", "init", "--bare", "../.bare"})
|
|
shell.RunCommand([]string{"git", "--git-dir=../.bare", "--work-tree=.", "checkout", "-b", "mybranch"})
|
|
shell.CreateFile("blah", "original content\n")
|
|
|
|
// Add a file and commit
|
|
shell.RunCommand([]string{"git", "--git-dir=../.bare", "--work-tree=.", "add", "blah"})
|
|
shell.RunCommand([]string{"git", "--git-dir=../.bare", "--work-tree=.", "commit", "-m", "initial commit"})
|
|
|
|
shell.UpdateFile("blah", "updated content\n")
|
|
},
|
|
Run: func(t *TestDriver, keys config.KeybindingConfig) {
|
|
t.Views().Branches().
|
|
Lines(
|
|
Contains("mybranch"),
|
|
)
|
|
|
|
t.Views().Commits().
|
|
Lines(
|
|
Contains("initial commit"),
|
|
)
|
|
|
|
t.Views().Files().
|
|
IsFocused().
|
|
Lines(
|
|
Contains(" M blah"), // shows as modified
|
|
).
|
|
PressPrimaryAction().
|
|
Press(keys.Files.CommitChanges)
|
|
|
|
t.ExpectPopup().CommitMessagePanel().
|
|
Title(Equals("Commit summary")).
|
|
Type("Add blah").
|
|
Confirm()
|
|
|
|
t.Views().Files().
|
|
IsEmpty()
|
|
|
|
t.Views().Commits().
|
|
Lines(
|
|
Contains("Add blah"),
|
|
Contains("initial commit"),
|
|
)
|
|
},
|
|
})
|