mirror of
https://github.com/appleboy/drone-ssh.git
synced 2025-05-09 18:23:21 +08:00
test: enhance testing and internal API robustness (#269)
* test: support ipv6 * chore: update Signed-off-by: appleboy <appleboy.tw@gmail.com> * chore: update Signed-off-by: appleboy <appleboy.tw@gmail.com> --------- Signed-off-by: appleboy <appleboy.tw@gmail.com>
This commit is contained in:
parent
7d0a886109
commit
cafc139713
4
.github/workflows/lint.yml
vendored
4
.github/workflows/lint.yml
vendored
@ -27,7 +27,9 @@ jobs:
|
|||||||
|
|
||||||
testing:
|
testing:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container: golang:1.21-alpine
|
container:
|
||||||
|
image: golang:1.21-alpine
|
||||||
|
options: --sysctl net.ipv6.conf.all.disable_ipv6=0
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
@ -432,7 +432,6 @@ func getHostPublicKeyFile(keypath string) (ssh.PublicKey, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pubkey, _, _, _, err = ssh.ParseAuthorizedKey(buf)
|
pubkey, _, _, _, err = ssh.ParseAuthorizedKey(buf)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
@ -965,33 +964,31 @@ func TestSudoCommand(t *testing.T) {
|
|||||||
assert.Equal(t, unindent(expected), unindent(buffer.String()))
|
assert.Equal(t, unindent(expected), unindent(buffer.String()))
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: TestCommandWithIPv6 is not working on github actions.
|
func TestCommandWithIPv6(t *testing.T) {
|
||||||
// func TestCommandWithIPv6(t *testing.T) {
|
var (
|
||||||
// var (
|
buffer bytes.Buffer
|
||||||
// buffer bytes.Buffer
|
expected = `
|
||||||
// expected = `
|
======CMD======
|
||||||
// ======CMD======
|
whoami
|
||||||
// whoami
|
======END======
|
||||||
// ======END======
|
out: drone-scp
|
||||||
// out: drone-scp
|
`
|
||||||
// `
|
)
|
||||||
// )
|
|
||||||
|
|
||||||
// plugin := Plugin{
|
plugin := Plugin{
|
||||||
// Config: Config{
|
Config: Config{
|
||||||
// Host: []string{"::1"},
|
Host: []string{"::1"},
|
||||||
// Username: "drone-scp",
|
Username: "drone-scp",
|
||||||
// Port: 22,
|
Port: 22,
|
||||||
// KeyPath: "./tests/.ssh/id_rsa",
|
KeyPath: "./tests/.ssh/id_rsa",
|
||||||
// Script: []string{
|
Script: []string{
|
||||||
// "whoami",
|
"whoami",
|
||||||
// },
|
},
|
||||||
// Protocol: easyssh.PROTOCOL_TCP6,
|
Protocol: easyssh.PROTOCOL_TCP6,
|
||||||
// CommandTimeout: 10 * time.Second,
|
CommandTimeout: 10 * time.Second,
|
||||||
// },
|
},
|
||||||
// Writer: &buffer,
|
Writer: &buffer,
|
||||||
// }
|
}
|
||||||
|
assert.Nil(t, plugin.Exec())
|
||||||
// assert.Nil(t, plugin.Exec())
|
assert.Equal(t, unindent(expected), unindent(buffer.String()))
|
||||||
// assert.Equal(t, unindent(expected), unindent(buffer.String()))
|
}
|
||||||
// }
|
|
||||||
|
Loading…
Reference in New Issue
Block a user