Willy Tarreau | 8844b45 | 2020-01-15 11:31:01 +0100 | [diff] [blame] | 1 | varnishtest "Hash validity test" |
| 2 | |
| 3 | #REQUIRE_VERSION=1.9 |
| 4 | |
| 5 | feature ignore_unknown_macro |
| 6 | |
| 7 | server s1 { |
| 8 | rxreq |
| 9 | txresp |
| 10 | } -start |
| 11 | |
| 12 | haproxy h1 -conf { |
| 13 | defaults |
| 14 | mode http |
| 15 | timeout connect 1s |
| 16 | timeout client 1s |
| 17 | timeout server 1s |
| 18 | |
| 19 | frontend fe |
| 20 | bind "fd@${fe}" |
| 21 | |
| 22 | # base64 encoding of \x00\x01\x02...\xFF |
| 23 | http-response set-var(res.key) "str(AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWltcXV5fYGFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6e3x9fn+AgYKDhIWGh4iJiouMjY6PkJGSk5SVlpeYmZqbnJ2en6ChoqOkpaanqKmqq6ytrq+wsbKztLW2t7i5uru8vb6/wMHCw8TFxsfIycrLzM3Oz9DR0tPU1dbX2Nna29zd3t/g4eLj5OXm5+jp6uvs7e7v8PHy8/T19vf4+fr7/P3+/w==),b64dec" |
| 24 | |
| 25 | # length (start:0, next:255) |
| 26 | http-response set-header x-len0 "%[var(res.key),length]" |
| 27 | http-response set-header x-len1 "%[var(res.key),bytes(1),length]" |
| 28 | |
| 29 | # text-based encoding |
| 30 | http-response set-header x-hex "%[var(res.key),hex]" |
| 31 | http-response set-header x-b64 "%[var(res.key),base64]" |
| 32 | |
| 33 | # SHA family |
| 34 | http-response set-header x-sha1 "%[var(res.key),sha1,hex]" |
| 35 | #http-response set-header x-sha2 "%[var(res.key),sha2,hex]" |
| 36 | #http-response set-header x-sha2-224 "%[var(res.key),sha2(224),hex]" |
| 37 | #http-response set-header x-sha2-256 "%[var(res.key),sha2(256),hex]" |
| 38 | #http-response set-header x-sha2-384 "%[var(res.key),sha2(384),hex]" |
| 39 | #http-response set-header x-sha2-512 "%[var(res.key),sha2(512),hex]" |
| 40 | |
| 41 | # 32-bit hashes, and their avalanche variants |
| 42 | http-response set-header x-crc32 "%[var(res.key),crc32]" |
| 43 | http-response set-header x-crc32-1 "%[var(res.key),crc32(1)]" |
| 44 | |
| 45 | http-response set-header x-crc32c "%[var(res.key),crc32c]" |
| 46 | http-response set-header x-crc32c-1 "%[var(res.key),crc32c(1)]" |
| 47 | |
| 48 | http-response set-header x-djb2 "%[var(res.key),djb2]" |
| 49 | http-response set-header x-djb2-1 "%[var(res.key),djb2(1)]" |
| 50 | |
| 51 | http-response set-header x-sdbm "%[var(res.key),sdbm]" |
| 52 | http-response set-header x-sdbm-1 "%[var(res.key),sdbm(1)]" |
| 53 | |
| 54 | http-response set-header x-wt6 "%[var(res.key),wt6]" |
| 55 | http-response set-header x-wt6-1 "%[var(res.key),wt6(1)]" |
| 56 | |
| 57 | # 32/64-bit hashes, with seed variant |
| 58 | http-response set-header x-xxh32 "%[var(res.key),xxh32]" |
| 59 | http-response set-header x-xxh32-1 "%[var(res.key),xxh32(1)]" |
| 60 | http-response set-header x-xxh64 "%[var(res.key),xxh64]" |
| 61 | http-response set-header x-xxh64-1 "%[var(res.key),xxh64(1)]" |
| 62 | default_backend be |
| 63 | |
| 64 | backend be |
| 65 | server srv1 ${s1_addr}:${s1_port} |
| 66 | } -start |
| 67 | |
| 68 | client c1 -connect ${h1_fe_sock} { |
| 69 | txreq -url "/" |
| 70 | rxresp |
| 71 | expect resp.status == 200 |
| 72 | expect resp.http.x-len0 == "0" |
| 73 | expect resp.http.x-len1 == "255" |
| 74 | expect resp.http.x-hex == "000102030405060708090A0B0C0D0E0F101112131415161718191A1B1C1D1E1F202122232425262728292A2B2C2D2E2F303132333435363738393A3B3C3D3E3F404142434445464748494A4B4C4D4E4F505152535455565758595A5B5C5D5E5F606162636465666768696A6B6C6D6E6F707172737475767778797A7B7C7D7E7F808182838485868788898A8B8C8D8E8F909192939495969798999A9B9C9D9E9FA0A1A2A3A4A5A6A7A8A9AAABACADAEAFB0B1B2B3B4B5B6B7B8B9BABBBCBDBEBFC0C1C2C3C4C5C6C7C8C9CACBCCCDCECFD0D1D2D3D4D5D6D7D8D9DADBDCDDDEDFE0E1E2E3E4E5E6E7E8E9EAEBECEDEEEFF0F1F2F3F4F5F6F7F8F9FAFBFCFDFEFF" |
| 75 | expect resp.http.x-b64 == "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWltcXV5fYGFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6e3x9fn+AgYKDhIWGh4iJiouMjY6PkJGSk5SVlpeYmZqbnJ2en6ChoqOkpaanqKmqq6ytrq+wsbKztLW2t7i5uru8vb6/wMHCw8TFxsfIycrLzM3Oz9DR0tPU1dbX2Nna29zd3t/g4eLj5OXm5+jp6uvs7e7v8PHy8/T19vf4+fr7/P3+/w==" |
| 76 | |
| 77 | expect resp.http.x-sha1 == "4916D6BDB7F78E6803698CAB32D1586EA457DFC8" |
| 78 | #expect resp.http.x-sha2 == "40AFF2E9D2D8922E47AFD4648E6967497158785FBD1DA870E7110266BF944880" |
| 79 | #expect resp.http.x-sha2-224 == "88702E63237824C4EB0D0FCFE41469A462493E8BEB2A75BBE5981734" |
| 80 | #expect resp.http.x-sha2-256 == "40AFF2E9D2D8922E47AFD4648E6967497158785FBD1DA870E7110266BF944880" |
| 81 | #expect resp.http.x-sha2-384 == "FFDAEBFF65ED05CF400F0221C4CCFB4B2104FB6A51F87E40BE6C4309386BFDEC2892E9179B34632331A59592737DB5C5" |
| 82 | #expect resp.http.x-sha2-512 == "1E7B80BC8EDC552C8FEEB2780E111477E5BC70465FAC1A77B29B35980C3F0CE4A036A6C9462036824BD56801E62AF7E9FEBA5C22ED8A5AF877BF7DE117DCAC6D" |
| 83 | expect resp.http.x-crc32 == "688229491" |
| 84 | expect resp.http.x-crc32-1 == "4230317029" |
| 85 | expect resp.http.x-crc32c == "2621708363" |
| 86 | expect resp.http.x-crc32c-1 == "2242979626" |
| 87 | expect resp.http.x-djb2 == "2589693061" |
| 88 | expect resp.http.x-djb2-1 == "600622701" |
| 89 | expect resp.http.x-sdbm == "905707648" |
| 90 | expect resp.http.x-sdbm-1 == "3103804144" |
| 91 | expect resp.http.x-wt6 == "4090277559" |
| 92 | expect resp.http.x-wt6-1 == "1192658767" |
| 93 | expect resp.http.x-xxh32 == "1497633363" |
| 94 | expect resp.http.x-xxh32-1 == "1070421674" |
| 95 | expect resp.http.x-xxh64 == "2282408585429094475" |
| 96 | expect resp.http.x-xxh64-1 == "-4689339368900765961" |
| 97 | } -run |