From ddab597cfe08722be80b14856dacb0b38915e194 Mon Sep 17 00:00:00 2001
From: Stephan Bosch <stephan.bosch@dovecot.fi>
Date: Sat, 12 May 2018 00:56:19 +0200
Subject: [PATCH] tests: address test: Add tests for invalid addresses with
 UTF-8 in the localpart.

---
 tests/test-address.svtest | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/tests/test-address.svtest b/tests/test-address.svtest
index 8ced8a640..135d5499f 100644
--- a/tests/test-address.svtest
+++ b/tests/test-address.svtest
@@ -310,6 +310,7 @@ To: @example.org
 Cc: nonsense
 Resent-To:
 Bcc: nico@frop.example.com, @example.org
+Resent-Cc:<jürgen@example.com>
 Subject: Invalid addresses
 
 Test.
@@ -321,10 +322,18 @@ test "Invalid addresses" {
 		test_fail ":localpart matched invalid address";
 	}
 
+	if address :localpart "resent-cc" "jürgen" {
+		test_fail ":localpart matched invalid UTF-8 address";
+	}
+
 	if address :domain "to" "example.org" {
 		test_fail ":domain matched invalid address";
 	}
 
+	if address :domain "resent-cc" "example.com" {
+		test_fail ":domain matched invalid UTF-8 address";
+	}
+
 	if not address :is :all "resent-to" "" {
 		test_fail ":all failed to match empty address";
 	}
@@ -333,6 +342,10 @@ test "Invalid addresses" {
 		test_fail ":all failed to match invalid address";
 	}
 
+	if not address :is :all "resent-cc" "<jürgen@example.com>" {
+		test_fail ":all failed to match invalid UTF-8 address";
+	}
+
 	if address :is :localpart "bcc" "" {
 		test_fail ":localpart matched invalid address";
 	}
-- 
GitLab