]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.11] gh-111347: Remove wrong assertion in test_sendfile (GH-111377) (#111462)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Tue, 31 Oct 2023 01:14:30 +0000 (02:14 +0100)
committerGitHub <noreply@github.com>
Tue, 31 Oct 2023 01:14:30 +0000 (18:14 -0700)
gh-111347: Remove wrong assertion in test_sendfile (GH-111377)

Windows is different.
(cherry picked from commit fa35b9e89b2e207fc8bae9eb0284260d0d922e7a)

Co-authored-by: zcxsythenew <30565051+zcxsythenew@users.noreply.github.com>
Lib/test/test_asyncio/test_sendfile.py

index 0198da21d77028b22fd674858903f8cbe284fefb..d33ff197bbfa1de9988a3d1eb3d2dc205cf33295 100644 (file)
@@ -470,8 +470,11 @@ class SendfileMixin(SendfileBase):
 
         self.assertTrue(1024 <= srv_proto.nbytes < len(self.DATA),
                         srv_proto.nbytes)
-        self.assertTrue(1024 <= self.file.tell() < len(self.DATA),
-                        self.file.tell())
+        if not (sys.platform == 'win32'
+                and isinstance(self.loop, asyncio.ProactorEventLoop)):
+            # On Windows, Proactor uses transmitFile, which does not update tell()
+            self.assertTrue(1024 <= self.file.tell() < len(self.DATA),
+                            self.file.tell())
         self.assertTrue(cli_proto.transport.is_closing())
 
     def test_sendfile_fallback_close_peer_in_the_middle_of_receiving(self):