Add basic tests for the BugType model (#513)

This commit is contained in:
x249wang 2019-05-29 04:39:33 -04:00 коммит произвёл Marco
Родитель cf72fbabbc
Коммит a5c584afa2
2 изменённых файлов: 37 добавлений и 0 удалений

5
tests/fixtures/bugs.json поставляемый

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

32
tests/test_bugtype.py Normal file
Просмотреть файл

@ -0,0 +1,32 @@
# -*- coding: utf-8 -*-
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
# You can obtain one at http://mozilla.org/MPL/2.0/.
import numpy as np
from bugbug.models.bugtype import BugTypeModel
def test_get_bugtype_labels():
model = BugTypeModel()
classes, keyword_list = model.get_labels()
assert np.array_equal(classes[1319957], np.zeros(4))
target = np.zeros(4)
target[keyword_list.index("crash")] = 1
assert np.array_equal(classes[1319973], target)
target = np.zeros(4)
target[keyword_list.index("memory")] = 1
assert np.array_equal(classes[1325215], target)
target = np.zeros(4)
target[keyword_list.index("performance")] = 1
assert np.array_equal(classes[1320195], target)
target = np.zeros(4)
target[keyword_list.index("security")] = 1
assert np.array_equal(classes[1320039], target)