├── README.md ├── test-netpol.sh └── tests ├── alllow-all-without-internet.sh ├── allow-across-namespaces.sh ├── allow-all-in-namespace.sh ├── allow-all-includes-internet.sh ├── allow-all-to-specific-namespace.sh ├── allow-in-namespace.sh ├── allow-overrides-specific-policy.sh ├── client-in-another-namespace.sh ├── default-allow-across-namespaces.sh ├── default-allow-inter-namespace.sh ├── default-allow.sh ├── deny-across-namespaces.sh ├── deny-all.sh ├── deny-in-namespace.sh ├── egress-to-all-pods-blocks-internet.sh ├── egress-with-dns.sh ├── egress-with-specific-dns.sh ├── egress-without-dns.sh ├── empty-from.sh ├── empty-ingress.sh ├── empty-port-is-any.sh ├── empty-udp-port-is-any-udp.sh ├── from-with-two-podSelectors-.sh ├── named-port.sh ├── non-tcp-udp-fail.sh ├── non-tcp-udp-succeed.sh └── policy-with-two-froms.sh /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tufin/test-network-policies/HEAD/README.md -------------------------------------------------------------------------------- /test-netpol.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tufin/test-network-policies/HEAD/test-netpol.sh -------------------------------------------------------------------------------- /tests/alllow-all-without-internet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tufin/test-network-policies/HEAD/tests/alllow-all-without-internet.sh -------------------------------------------------------------------------------- /tests/allow-across-namespaces.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tufin/test-network-policies/HEAD/tests/allow-across-namespaces.sh -------------------------------------------------------------------------------- /tests/allow-all-in-namespace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tufin/test-network-policies/HEAD/tests/allow-all-in-namespace.sh -------------------------------------------------------------------------------- /tests/allow-all-includes-internet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tufin/test-network-policies/HEAD/tests/allow-all-includes-internet.sh -------------------------------------------------------------------------------- /tests/allow-all-to-specific-namespace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tufin/test-network-policies/HEAD/tests/allow-all-to-specific-namespace.sh -------------------------------------------------------------------------------- /tests/allow-in-namespace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tufin/test-network-policies/HEAD/tests/allow-in-namespace.sh -------------------------------------------------------------------------------- /tests/allow-overrides-specific-policy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tufin/test-network-policies/HEAD/tests/allow-overrides-specific-policy.sh -------------------------------------------------------------------------------- /tests/client-in-another-namespace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tufin/test-network-policies/HEAD/tests/client-in-another-namespace.sh -------------------------------------------------------------------------------- /tests/default-allow-across-namespaces.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tufin/test-network-policies/HEAD/tests/default-allow-across-namespaces.sh -------------------------------------------------------------------------------- /tests/default-allow-inter-namespace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tufin/test-network-policies/HEAD/tests/default-allow-inter-namespace.sh -------------------------------------------------------------------------------- /tests/default-allow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tufin/test-network-policies/HEAD/tests/default-allow.sh -------------------------------------------------------------------------------- /tests/deny-across-namespaces.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tufin/test-network-policies/HEAD/tests/deny-across-namespaces.sh -------------------------------------------------------------------------------- /tests/deny-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tufin/test-network-policies/HEAD/tests/deny-all.sh -------------------------------------------------------------------------------- /tests/deny-in-namespace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tufin/test-network-policies/HEAD/tests/deny-in-namespace.sh -------------------------------------------------------------------------------- /tests/egress-to-all-pods-blocks-internet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tufin/test-network-policies/HEAD/tests/egress-to-all-pods-blocks-internet.sh -------------------------------------------------------------------------------- /tests/egress-with-dns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tufin/test-network-policies/HEAD/tests/egress-with-dns.sh -------------------------------------------------------------------------------- /tests/egress-with-specific-dns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tufin/test-network-policies/HEAD/tests/egress-with-specific-dns.sh -------------------------------------------------------------------------------- /tests/egress-without-dns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tufin/test-network-policies/HEAD/tests/egress-without-dns.sh -------------------------------------------------------------------------------- /tests/empty-from.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tufin/test-network-policies/HEAD/tests/empty-from.sh -------------------------------------------------------------------------------- /tests/empty-ingress.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tufin/test-network-policies/HEAD/tests/empty-ingress.sh -------------------------------------------------------------------------------- /tests/empty-port-is-any.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tufin/test-network-policies/HEAD/tests/empty-port-is-any.sh -------------------------------------------------------------------------------- /tests/empty-udp-port-is-any-udp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tufin/test-network-policies/HEAD/tests/empty-udp-port-is-any-udp.sh -------------------------------------------------------------------------------- /tests/from-with-two-podSelectors-.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tufin/test-network-policies/HEAD/tests/from-with-two-podSelectors-.sh -------------------------------------------------------------------------------- /tests/named-port.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tufin/test-network-policies/HEAD/tests/named-port.sh -------------------------------------------------------------------------------- /tests/non-tcp-udp-fail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tufin/test-network-policies/HEAD/tests/non-tcp-udp-fail.sh -------------------------------------------------------------------------------- /tests/non-tcp-udp-succeed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tufin/test-network-policies/HEAD/tests/non-tcp-udp-succeed.sh -------------------------------------------------------------------------------- /tests/policy-with-two-froms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tufin/test-network-policies/HEAD/tests/policy-with-two-froms.sh --------------------------------------------------------------------------------