mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	Automatically generated by the following script, based on the output
of lint with flake8-comma:
import re
import sys
last_filename = None
last_row = None
lines = []
for msg in sys.stdin:
    m = re.match(
        r"\x1b\[35mflake8    \|\x1b\[0m \x1b\[1;31m(.+):(\d+):(\d+): (\w+)", msg
    )
    if m:
        filename, row_str, col_str, err = m.groups()
        row, col = int(row_str), int(col_str)
        if filename == last_filename:
            assert last_row != row
        else:
            if last_filename is not None:
                with open(last_filename, "w") as f:
                    f.writelines(lines)
            with open(filename) as f:
                lines = f.readlines()
            last_filename = filename
        last_row = row
        line = lines[row - 1]
        if err in ["C812", "C815"]:
            lines[row - 1] = line[: col - 1] + "," + line[col - 1 :]
        elif err in ["C819"]:
            assert line[col - 2] == ","
            lines[row - 1] = line[: col - 2] + line[col - 1 :].lstrip(" ")
if last_filename is not None:
    with open(last_filename, "w") as f:
        f.writelines(lines)
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
		
	
		
			
				
	
	
		
			58 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
import urllib
 | 
						|
 | 
						|
from zerver.lib.test_classes import WebhookTestCase
 | 
						|
 | 
						|
 | 
						|
class TravisHookTests(WebhookTestCase):
 | 
						|
    STREAM_NAME = 'travis'
 | 
						|
    URL_TEMPLATE = "/api/v1/external/travis?stream={stream}&api_key={api_key}"
 | 
						|
    FIXTURE_DIR_NAME = 'travis'
 | 
						|
    TOPIC = 'builds'
 | 
						|
 | 
						|
    def test_travis_message(self) -> None:
 | 
						|
        """
 | 
						|
        Build notifications are generated by Travis after build completes.
 | 
						|
 | 
						|
        The subject describes the repo and Stash "project". The
 | 
						|
        content describes the commits pushed.
 | 
						|
        """
 | 
						|
        expected_message = ("Author: josh_mandel\nBuild status: Passed :thumbs_up:\n"
 | 
						|
                            "Details: [changes](https://github.com/hl7-fhir/fhir-sv"
 | 
						|
                            "n/compare/6dccb98bcfd9...6c457d366a31), [build log](ht"
 | 
						|
                            "tps://travis-ci.org/hl7-fhir/fhir-svn/builds/92495257)")
 | 
						|
 | 
						|
        self.send_and_test_stream_message(
 | 
						|
            'build',
 | 
						|
            self.TOPIC,
 | 
						|
            expected_message,
 | 
						|
            content_type="application/x-www-form-urlencoded",
 | 
						|
        )
 | 
						|
 | 
						|
    def test_ignore_travis_pull_request_by_default(self) -> None:
 | 
						|
        self.subscribe(self.test_user, self.STREAM_NAME)
 | 
						|
        result = self.client_post(
 | 
						|
            self.url,
 | 
						|
            self.get_body('pull_request'),
 | 
						|
            content_type="application/x-www-form-urlencoded",
 | 
						|
        )
 | 
						|
        self.assert_json_success(result)
 | 
						|
        msg = self.get_last_message()
 | 
						|
        self.assertNotEqual(msg.topic_name(), self.TOPIC)
 | 
						|
 | 
						|
    def test_travis_pull_requests_are_not_ignored_when_applicable(self) -> None:
 | 
						|
        self.url = f"{self.build_webhook_url()}&ignore_pull_requests=false"
 | 
						|
        expected_message = ("Author: josh_mandel\nBuild status: Passed :thumbs_up:\n"
 | 
						|
                            "Details: [changes](https://github.com/hl7-fhir/fhir-sv"
 | 
						|
                            "n/compare/6dccb98bcfd9...6c457d366a31), [build log](ht"
 | 
						|
                            "tps://travis-ci.org/hl7-fhir/fhir-svn/builds/92495257)")
 | 
						|
 | 
						|
        self.send_and_test_stream_message(
 | 
						|
            'pull_request',
 | 
						|
            self.TOPIC,
 | 
						|
            expected_message,
 | 
						|
            content_type="application/x-www-form-urlencoded",
 | 
						|
        )
 | 
						|
 | 
						|
    def get_body(self, fixture_name: str) -> str:
 | 
						|
        return urllib.parse.urlencode({'payload': self.webhook_fixture_data("travis", fixture_name, file_type="json")})
 |