Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

kola: fcos.network.listeners test started failing with testing-devel 32.20200622.20.0 #552

Closed
dustymabe opened this issue Jun 25, 2020 · 5 comments · Fixed by coreos/coreos-assembler#1585
Labels
jira for syncing to jira

Comments

@dustymabe
Copy link
Member

The fcos.network.listeners test started failing. This started happening in 32.20200622.20.0 CI link:

--- FAIL: fcos.network.listeners (93.94s)
        network.go:84: unexpected number of parts on line: "tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      1302/sshd: /usr/sbi " in output 
        "Active Internet connections (only servers)
            Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name    
            tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      1302/sshd: /usr/sbi 
            tcp6       0      0 :::22                   :::*                    LISTEN      1302/sshd: /usr/sbi 
            udp        0      0 127.0.0.1:323           0.0.0.0:*                           866/chronyd         
            udp6       0      0 ::1:323                 :::*                                866/chronyd"

I also see a few of these scattered in there:

--- FAIL: ext.config.gshadow (21.61s)
        harness.go:869: Cluster failed starting machines: Operation "operation-1592857683496-5a8b214670f66-227e9c95-08658f16" failed: [0xc00057e360]
--- PASS: coreos.auth.verify (65.74s)
=== RUN   rpmostree.upgrade-rollback/rollback
--- FAIL: fcos.ignition.misc.empty (21.54s)
        harness.go:869: Cluster failed starting machines: Operation "operation-1592857705108-5a8b215b0d2b3-f3675b9d-689fc433" failed: [0xc0008d7380]

In that particular bump this was the diff:

Removed:

    fipscheck-1.5.0-8.fc32.x86_64
    fipscheck-lib-1.5.0-8.fc32.x86_64 

Upgraded:

    crypto-policies 20200527-1.gitb234a47.fc32.noarch → 20200610-1.git7f9d474.fc32.noarch
    openssh 8.2p1-2.fc32.x86_64 → 8.3p1-3.fc32.x86_64
    openssh-clients 8.2p1-2.fc32.x86_64 → 8.3p1-3.fc32.x86_64
    openssh-server 8.2p1-2.fc32.x86_64 → 8.3p1-3.fc32.x86_64 
@dustymabe dustymabe changed the title kola gcp tests started failing with testing-devel 32.20200622.20.0 kola: gcp: fcos.network.listeners test started failing with testing-devel 32.20200622.20.0 Jun 25, 2020
@dustymabe
Copy link
Member Author

This seems to be because the output previously was:

tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      737/sshd

where it is now

tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      693/sshd: /usr/sbin

So more fields on the line and our test isn't parsing it properly.

@dustymabe
Copy link
Member Author

since netstat is (I quote) This program is mostly obsolete. - maybe we should convert this test to use ss instead.

@dustymabe dustymabe added the jira for syncing to jira label Jun 25, 2020
@dustymabe
Copy link
Member Author

AWS is also failing on this (which makes sense).

@dustymabe dustymabe changed the title kola: gcp: fcos.network.listeners test started failing with testing-devel 32.20200622.20.0 kola: fcos.network.listeners test started failing with testing-devel 32.20200622.20.0 Jun 26, 2020
@travier
Copy link
Member

travier commented Jun 30, 2020

Submitted to kola in coreos/coreos-assembler#1569

kelvinfan001 added a commit to kelvinfan001/coreos-assembler that referenced this issue Jul 10, 2020
Update kola tests to use ss instead of the deprecated netstat,
and adjust tests to expect ss output.

This should fix coreos/fedora-coreos-tracker#552.

The following tests have been updated:

fcos.network.listeners
crio.network
podman.network-multi (currently disabled)
kelvinfan001 added a commit to kelvinfan001/coreos-assembler that referenced this issue Jul 13, 2020
Update kola tests to use ss instead of the deprecated netstat,
and adjust tests to expect ss output.

This should fix coreos/fedora-coreos-tracker#552.

The following tests have been updated:

fcos.network.listeners
crio.network
podman.network-multi (currently disabled)
kelvinfan001 added a commit to kelvinfan001/coreos-assembler that referenced this issue Jul 14, 2020
Update kola tests to use ss instead of the deprecated netstat,
and adjust tests to expect ss output.

This should fix coreos/fedora-coreos-tracker#552.

The following tests have been updated:

fcos.network.listeners
crio.network
podman.network-multi (currently disabled)
kelvinfan001 added a commit to kelvinfan001/coreos-assembler that referenced this issue Jul 15, 2020
Update kola tests to use ss instead of the deprecated netstat,
and adjust tests to expect ss output.

This should fix coreos/fedora-coreos-tracker#552.

The following tests have been updated:

fcos.network.listeners
crio.network
podman.network-multi (currently disabled)
kelvinfan001 added a commit to kelvinfan001/coreos-assembler that referenced this issue Jul 16, 2020
Update kola tests to use ss instead of the deprecated netstat,
and adjust tests to expect ss output.

This should fix coreos/fedora-coreos-tracker#552.

The following tests have been updated:

fcos.network.listeners
crio.network
podman.network-multi (currently disabled)
kelvinfan001 added a commit to kelvinfan001/coreos-assembler that referenced this issue Jul 16, 2020
Update kola tests to use ss instead of the deprecated netstat,
and adjust tests to expect ss output.

This should fix coreos/fedora-coreos-tracker#552.

The following tests have been updated:

fcos.network.listeners
crio.network
podman.network-multi (currently disabled)
openshift-merge-robot pushed a commit to coreos/coreos-assembler that referenced this issue Jul 16, 2020
Update kola tests to use ss instead of the deprecated netstat,
and adjust tests to expect ss output.

This should fix coreos/fedora-coreos-tracker#552.

The following tests have been updated:

fcos.network.listeners
crio.network
podman.network-multi (currently disabled)
@dustymabe
Copy link
Member Author

This was fixed in coreos/coreos-assembler#1585

kelvinfan001 added a commit to kelvinfan001/coreos-assembler that referenced this issue Jul 17, 2020
Update kola tests to use ss instead of the deprecated netstat,
and adjust tests to expect ss output.

This should fix coreos/fedora-coreos-tracker#552.

The following tests have been updated:

fcos.network.listeners
crio.network
podman.network-multi (currently disabled)
kelvinfan001 added a commit to kelvinfan001/coreos-assembler that referenced this issue Jul 17, 2020
Update kola tests to use ss instead of the deprecated netstat,
and adjust tests to expect ss output.

This should fix coreos/fedora-coreos-tracker#552.

The following tests have been updated:

fcos.network.listeners
crio.network
podman.network-multi (currently disabled)
kelvinfan001 added a commit to kelvinfan001/coreos-assembler that referenced this issue Jul 17, 2020
Update kola tests to use ss instead of the deprecated netstat,
and adjust tests to expect ss output.

This should fix coreos/fedora-coreos-tracker#552.

The following tests have been updated:

fcos.network.listeners
crio.network
podman.network-multi (currently disabled)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
jira for syncing to jira
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants