Esempio n. 1
0
def test_generate_yml_advisories_missing_things(rts_mock):
    rts_mock.return_value = 'html'
    data = yaml_ordered_safe_load(StringIO(YML_ADVISORY_MISSING_THINGS))
    generate_yml_advisories_html(data)
    rts_mock.assert_has_calls([
        call('security/partials/cve.html', {
            'id': 'CVE-2016-2827',
            'impact': 'Low',
            'impact_class': 'low',
            'title': 'A sample title for a CVE here',
            'reporter': 'Reporty McReporterface',
            'description': 'Short description <strong>with HTML</strong> and multiple lines!\n\n'
                           'Can also have full breaks and ***markdown***!\n',
        }),
        call('security/partials/cve.html', {
            'id': 'CVE-2016-5270',
            'impact': 'High',
            'impact_class': 'high',
            'title': 'Another sampile title, this time with more length!',
            'reporter': 'A Nameless Evilcorp Employee',
            'description': 'Another short description',
            'bugs': [
                {'url': 'https://bugzilla.mozilla.org/show_bug.cgi?id=1289085',
                 'desc': 'Bug 1289085'},
            ]
        }),
    ])
Esempio n. 2
0
def test_generate_yml_advisories_missing_things(rts_mock):
    rts_mock.return_value = "html"
    data = yaml_ordered_safe_load(StringIO(YML_ADVISORY_MISSING_THINGS))
    generate_yml_advisories_html(data)
    rts_mock.assert_has_calls([
        call(
            "security/partials/cve.html",
            {
                "id":
                "CVE-2016-2827",
                "impact":
                "Low",
                "impact_class":
                "low",
                "title":
                "A sample title for a CVE here",
                "reporter":
                "Reporty McReporterface",
                "description":
                "Short description <strong>with HTML</strong> and multiple lines!\n\n"
                "Can also have full breaks and ***markdown***!\n",
            },
        ),
        call(
            "security/partials/cve.html",
            {
                "id":
                "CVE-2016-5270",
                "impact":
                "High",
                "impact_class":
                "high",
                "title":
                "Another sampile title, this time with more length!",
                "reporter":
                "A Nameless Evilcorp Employee",
                "description":
                "Another short description",
                "bugs": [
                    {
                        "url":
                        "https://bugzilla.mozilla.org/show_bug.cgi?id=1289085",
                        "desc": "Bug 1289085"
                    },
                ],
            },
        ),
    ])
Esempio n. 3
0
def test_generate_yml_advisories_html(rts_mock):
    rts_mock.return_value = 'html'
    data = yaml_ordered_safe_load(StringIO(YML_ADVISORY))
    html = generate_yml_advisories_html(data)
    assert html.startswith('<p>Some <strong>HTML</strong> that relates '
                           'to the whole lot of em.</p>')
    rts_mock.assert_has_calls([
        call('security/partials/cve.html', {
            'id': 'CVE-2016-2827',
            'impact': 'Low',
            'impact_class': 'low',
            'title': 'A sample title for a CVE here',
            'reporter': 'Reporty McReporterface',
            'description': 'Short description <strong>with HTML</strong> and multiple lines!\n\n'
                           'Can also have full breaks and ***markdown***!\n',
            'bugs': [
                {'url': 'https://bugzilla.mozilla.org/show_bug.cgi?id=1289085',
                 'desc': 'Bug 1289085'},
                {'url': 'https://bugzilla.mozilla.org/buglist.cgi?bug_id=1289085%2C1289087',
                 'desc': 'stuff about the bugs'},
            ]
        }),
        call('security/partials/cve.html', {
            'id': 'CVE-2016-5270',
            'impact': 'High',
            'impact_class': 'high',
            'title': 'Another sampile title, this time with more length!',
            'reporter': 'A Nameless Evilcorp Employee',
            'description': 'Another short description',
            'bugs': [
                {'url': 'https://example.com/warning.html',
                 'desc': 'A different site that is totally not bugzilla'},
            ]
        }),
    ])
Esempio n. 4
0
def test_generate_yml_advisories_html_non_cve(rts_mock):
    rts_mock.return_value = 'html'
    data = yaml_ordered_safe_load(StringIO(YML_ADVISORY_NON_CVE))
    html = generate_yml_advisories_html(data)
    assert html.startswith('<p>Some <strong>HTML</strong> that relates '
                           'to the whole lot of em.</p>')
    rts_mock.assert_has_calls([
        call(
            'security/partials/cve.html', {
                'id':
                'CVE-2016-2827',
                'impact':
                'Low',
                'impact_class':
                'low',
                'title':
                'A sample title for a CVE here',
                'reporter':
                'Reporty McReporterface',
                'description':
                'Short description <strong>with HTML</strong> and multiple lines!\n\n'
                'Can also have full breaks and ***markdown***!\n',
                'bugs': [
                    {
                        'url':
                        'https://bugzilla.mozilla.org/show_bug.cgi?id=1289085',
                        'desc': 'Bug 1289085'
                    },
                    {
                        'url':
                        'https://bugzilla.mozilla.org/buglist.cgi?bug_id=1289085%2C1289087',
                        'desc': 'stuff about the bugs'
                    },
                ]
            }),
        call(
            'security/partials/cve.html', {
                'id':
                'MVID-2016-5270',
                'impact':
                'High',
                'impact_class':
                'high',
                'title':
                'Another sampile title, this time with more length!',
                'reporter':
                'A Nameless Evilcorp Employee',
                'description':
                'Another short description',
                'bugs': [
                    {
                        'url': 'https://example.com/warning.html',
                        'desc': 'A different site that is totally not bugzilla'
                    },
                ]
            }),
    ])
Esempio n. 5
0
def test_generate_yml_advisories_missing_things(rts_mock):
    rts_mock.return_value = 'html'
    data = yaml_ordered_safe_load(StringIO(YML_ADVISORY_MISSING_THINGS))
    generate_yml_advisories_html(data)
    rts_mock.assert_has_calls([
        call(
            'security/partials/cve.html', {
                'id':
                'CVE-2016-2827',
                'impact':
                'Low',
                'impact_class':
                'low',
                'title':
                'A sample title for a CVE here',
                'reporter':
                'Reporty McReporterface',
                'description':
                'Short description <strong>with HTML</strong> and multiple lines!\n\n'
                'Can also have full breaks and ***markdown***!\n',
            }),
        call(
            'security/partials/cve.html', {
                'id':
                'CVE-2016-5270',
                'impact':
                'High',
                'impact_class':
                'high',
                'title':
                'Another sampile title, this time with more length!',
                'reporter':
                'A Nameless Evilcorp Employee',
                'description':
                'Another short description',
                'bugs': [
                    {
                        'url':
                        'https://bugzilla.mozilla.org/show_bug.cgi?id=1289085',
                        'desc': 'Bug 1289085'
                    },
                ]
            }),
    ])
Esempio n. 6
0
def test_generate_yml_advisories_html_non_cve(rts_mock):
    rts_mock.return_value = "html"
    data = yaml_ordered_safe_load(StringIO(YML_ADVISORY_NON_CVE))
    html = generate_yml_advisories_html(data)
    assert html.startswith(
        "<p>Some <strong>HTML</strong> that relates to the whole lot of em.</p>"
    )
    rts_mock.assert_has_calls([
        call(
            "security/partials/cve.html",
            {
                "id":
                "CVE-2016-2827",
                "impact":
                "Low",
                "impact_class":
                "low",
                "title":
                "A sample title for a CVE here",
                "reporter":
                "Reporty McReporterface",
                "description":
                "Short description <strong>with HTML</strong> and multiple lines!\n\n"
                "Can also have full breaks and ***markdown***!\n",
                "bugs": [
                    {
                        "url":
                        "https://bugzilla.mozilla.org/show_bug.cgi?id=1289085",
                        "desc": "Bug 1289085"
                    },
                    {
                        "url":
                        "https://bugzilla.mozilla.org/buglist.cgi?bug_id=1289085%2C1289087",
                        "desc": "stuff about the bugs"
                    },
                ],
            },
        ),
        call(
            "security/partials/cve.html",
            {
                "id":
                "MVID-2016-5270",
                "impact":
                "High",
                "impact_class":
                "high",
                "title":
                "Another sampile title, this time with more length!",
                "reporter":
                "A Nameless Evilcorp Employee",
                "description":
                "Another short description",
                "bugs": [
                    {
                        "url": "https://example.com/warning.html",
                        "desc": "A different site that is totally not bugzilla"
                    },
                ],
            },
        ),
    ])