blob: e69a37c405bad4be2df4444bd36fe3e6f0750e8c [file] [log] [blame]
Patrick Williams8e7b46e2023-05-01 14:19:06 -05001From da83bd7ca0959027086115f23534957b0917aaa5 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Thu, 27 Apr 2023 22:21:24 -0700
4Subject: [PATCH] tests: Fix test_bytes_args
5
6sys.stdin.encoding is readonly therefore use Mocking to wrap it.
7Sourced from - Alpine
8
9Upstream-Status: Pending
10Signed-off-by: Khem Raj <raj.khem@gmail.com>
11---
12 tests/test_arguments.py | 6 +++++-
13 1 file changed, 5 insertions(+), 1 deletion(-)
14
15diff --git a/tests/test_arguments.py b/tests/test_arguments.py
16index 735df4b..3395c55 100644
17--- a/tests/test_arguments.py
18+++ b/tests/test_arguments.py
19@@ -1,4 +1,5 @@
20 import sys
21+from unittest import mock
22
23 import pytest
24
25@@ -86,9 +87,12 @@ def test_bytes_args(runner, monkeypatch):
26 ), "UTF-8 encoded argument should be implicitly converted to Unicode"
27
28 # Simulate empty locale environment variables
29- monkeypatch.setattr(sys.stdin, "encoding", "utf-8")
30 monkeypatch.setattr(sys, "getfilesystemencoding", lambda: "utf-8")
31 monkeypatch.setattr(sys, "getdefaultencoding", lambda: "utf-8")
32+ # sys.stdin.encoding is readonly, needs some extra effort to patch.
33+ stdin = mock.Mock(wraps=sys.stdin)
34+ stdin.encoding = "utf-8"
35+ monkeypatch.setattr(sys, "stdin", stdin)
36
37 runner.invoke(
38 from_bytes,
39--
402.40.1
41