1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-08-09 09:22:48 +03:00
Files
lazygit/pkg/integration/tests/patch_building/copy_patch_to_clipboard.go
Phanindra kumar Paladi c6929c36ae Corrected test assert
2023-01-23 15:53:21 +05:30

57 lines
1.4 KiB
Go

package patch_building
import (
"strings"
"github.com/atotto/clipboard"
"github.com/jesseduffield/lazygit/pkg/config"
. "github.com/jesseduffield/lazygit/pkg/integration/components"
)
var BuildPatchAndCopyToClipboard = NewIntegrationTest(NewIntegrationTestArgs{
Description: "Create a patch from the commits and copy the patch to clipbaord.",
ExtraCmdArgs: "",
Skip: false,
SetupConfig: func(config *config.AppConfig) {},
SetupRepo: func(shell *Shell) {
shell.NewBranch("branch-a")
shell.CreateFileAndAdd("file1", "first line\n")
shell.Commit("first commit")
shell.NewBranch("branch-b")
shell.UpdateFileAndAdd("file1", "first line\nsecond line\n")
shell.Commit("update")
shell.Checkout("branch-a")
},
Run: func(t *TestDriver, keys config.KeybindingConfig) {
t.Views().Branches().
Focus().
Lines(
Contains("branch-a").IsSelected(),
Contains("branch-b"),
).
Press(keys.Universal.NextItem).
PressEnter().
PressEnter()
t.Views().
CommitFiles().
Lines(
Contains("M file1").IsSelected(),
).
PressPrimaryAction().Press(keys.Universal.CreatePatchOptionsMenu)
t.ExpectPopup().Menu().Title(Equals("Patch Options")).Select(Contains("copy patch to clipboard")).Confirm()
t.Wait(1000)
text, err := clipboard.ReadAll()
if err != nil {
t.Fail(err.Error())
}
if !strings.HasPrefix(text, "diff --git a/file1 b/file1") {
t.Fail("Text from clipboard did not match with git diff")
}
},
})