|
18 | 18 | package org.newsclub.net.unix.domain;
|
19 | 19 |
|
20 | 20 | import static org.junit.jupiter.api.Assertions.assertTrue;
|
21 |
| -import static org.junit.jupiter.api.Assumptions.assumeFalse; |
22 | 21 | import static org.junit.jupiter.api.Assumptions.assumeTrue;
|
23 | 22 |
|
24 | 23 | import java.io.BufferedReader;
|
|
27 | 26 | import java.nio.charset.Charset;
|
28 | 27 | import java.util.ArrayList;
|
29 | 28 | import java.util.Collections;
|
| 29 | +import java.util.Iterator; |
30 | 30 | import java.util.List;
|
31 |
| -import java.util.Objects; |
32 | 31 |
|
33 | 32 | import org.newsclub.net.unix.AFSocketCapability;
|
34 | 33 | import org.newsclub.net.unix.AFSocketCapabilityRequirement;
|
@@ -67,12 +66,29 @@ private static List<String> lsofUnixSockets(long pid) throws IOException, TestAb
|
67 | 66 | try (BufferedReader in = new BufferedReader(new InputStreamReader(p.getInputStream(), Charset
|
68 | 67 | .defaultCharset()))) {
|
69 | 68 | String l;
|
| 69 | + |
| 70 | + boolean hasUnix = false; |
| 71 | + |
70 | 72 | while ((l = in.readLine()) != null) {
|
71 | 73 | lines.add(l);
|
| 74 | + if (!hasUnix && l.contains("unix")) { |
| 75 | + hasUnix = true; |
| 76 | + } |
72 | 77 | if (l.contains("busybox")) {
|
73 | 78 | assumeTrue(false, "incompatible lsof binary");
|
74 | 79 | }
|
75 | 80 | }
|
| 81 | + |
| 82 | + if (hasUnix) { |
| 83 | + // if "lsof" returns a "unix" identifier, focus on those lines specifically. |
| 84 | + for (Iterator<String> it = lines.iterator(); it.hasNext();) { |
| 85 | + String line = it.next(); |
| 86 | + if (!line.contains("unix")) { |
| 87 | + it.remove(); |
| 88 | + } |
| 89 | + } |
| 90 | + } |
| 91 | + |
76 | 92 | p.waitFor();
|
77 | 93 | } finally {
|
78 | 94 | p.destroy();
|
@@ -114,9 +130,8 @@ protected void postRunCheck(Process process, Object linesBeforeObj) throws TestA
|
114 | 130 | }
|
115 | 131 | }
|
116 | 132 |
|
117 |
| - assumeFalse(Objects.requireNonNull(linesAfter).isEmpty(), "lsof may fail to return anything"); |
118 |
| - |
119 |
| - if (linesAfter != null && linesBefore != null) { |
| 133 | + if (linesAfter != null && linesBefore != null && !linesBefore.isEmpty() && !linesAfter |
| 134 | + .isEmpty()) { |
120 | 135 | if (linesAfter.size() >= linesBefore.size()) {
|
121 | 136 | System.err.println("lsof: Unexpected output");
|
122 | 137 | System.err.println("lsof: Output before: " + linesBefore);
|
|
0 commit comments