aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorGuy Harris <gharris@sonic.net>2020-10-02 19:17:00 -0700
committerGuy Harris <gharris@sonic.net>2020-10-02 20:13:42 -0700
commite013c5ec7f175f4e12f20f201d639e64609960de (patch)
tree4eab00bd869dc44e1898e228d5fdcc42db2d8417 /test
parent22e7ddb63789ff603641be116ee24834ca7631f9 (diff)
Clean up URLs.
Add ui/urls.h to define some URLs on various of our websites. Use the GitLab URL for the wiki. Add a macro to generate wiki URLs. Update wiki URLs in comments etc. Use the #defined URL for the docs page in WelcomePage::on_helpLabel_clicked; that removes the last user of topic_online_url(), so get rid of it and swallow it up into topic_action_url().
Diffstat (limited to 'test')
-rw-r--r--test/lua/acme_file.lua5
-rw-r--r--test/suite_decryption.py6
2 files changed, 5 insertions, 6 deletions
diff --git a/test/lua/acme_file.lua b/test/lua/acme_file.lua
index 2595d53fe4..66d12d6c6d 100644
--- a/test/lua/acme_file.lua
+++ b/test/lua/acme_file.lua
@@ -31,10 +31,9 @@
To-do:
- make it use Struct.tohex/fromhex now that we have the Struct library in Wireshark
- - make it use a linux cooked-mode pseudo-header (see https://wiki.wireshark.org/SLL)
+ - make it use a linux cooked-mode pseudo-header (see https://gitlab.com/wireshark/wireshark/-/wikis/SLL)
- make it use preferences, once I write C-code for Wireshark to do that :)
- - rewrite some of the pattern searches to use real regex/PCRE instead? It's not in Wireshark yet,
- but it's coming (see https://code.wireshark.org/review/#/c/332/)
+ - rewrite some of the pattern searches to use real regex/PCRE instead?
Example SIP over UDP message:
Aug 26 19:25:10.685 On [5:0]2.1.1.1:5060 received from 2.1.2.115:5060
diff --git a/test/suite_decryption.py b/test/suite_decryption.py
index 9768d0b64c..a366620adb 100644
--- a/test/suite_decryption.py
+++ b/test/suite_decryption.py
@@ -25,7 +25,7 @@ import fixtures
class case_decrypt_80211(subprocesstest.SubprocessTestCase):
def test_80211_wpa_psk(self, cmd_tshark, capture_file):
'''IEEE 802.11 WPA PSK'''
- # https://wiki.wireshark.org/SampleCaptures?action=AttachFile&do=view&target=wpa-Induction.pcap
+ # https://gitlab.com/wireshark/wireshark/-/wikis/SampleCaptures?action=AttachFile&do=view&target=wpa-Induction.pcap
self.assertRun((cmd_tshark,
'-o', 'wlan.enable_decryption: TRUE',
'-Tfields',
@@ -289,7 +289,7 @@ class case_decrypt_dtls(subprocesstest.SubprocessTestCase):
'''DTLS'''
if not features.have_gnutls:
self.skipTest('Requires GnuTLS.')
- # https://wiki.wireshark.org/SampleCaptures?action=AttachFile&do=view&target=snakeoil.tgz
+ # https://gitlab.com/wireshark/wireshark/-/wikis/SampleCaptures?action=AttachFile&do=view&target=snakeoil.tgz
self.assertRun((cmd_tshark,
'-r', capture_file('snakeoil-dtls.pcap'),
'-Tfields',
@@ -339,7 +339,7 @@ class case_decrypt_tls(subprocesstest.SubprocessTestCase):
'''TLS using the server's private RSA key.'''
if not features.have_gnutls:
self.skipTest('Requires GnuTLS.')
- # https://wiki.wireshark.org/SampleCaptures?action=AttachFile&do=view&target=snakeoil2_070531.tgz
+ # https://gitlab.com/wireshark/wireshark/-/wikis/SampleCaptures?action=AttachFile&do=view&target=snakeoil2_070531.tgz
self.assertRun((cmd_tshark,
'-r', capture_file('rsasnakeoil2.pcap'),
'-Tfields',