示例#1
0
    async def test_success(self, database, threat_factory):
        threat = threat_factory()
        insert_threat(threat.dict())

        result = await threat_repository.create_pending_occurrence(threat)
        assert len(result.occurrences) == 1
        assert result.occurrences[0].state == State.PENDING
示例#2
0
    async def test_found(self, database, threat_factory):
        name = "lina"
        threat = threat_factory(name=name, occurrences=())
        insert_threat(threat.dict())

        result = await threat_repository.fetch_by_name(name)
        assert result == threat
示例#3
0
    async def test_found(self, database, threat_factory):
        id_ = 1
        threat = threat_factory(id=id_, occurrences=())
        insert_threat(threat.dict())

        result = await threat_repository.fetch_or_raise(id_)
        assert result == threat
示例#4
0
    async def test_threat_monitored(self, database, threat_factory,
                                    occurrence_factory):
        threat = threat_factory(occurrences=(occurrence_factory(
            state="active").dict(), ))
        insert_threat(threat.dict())

        with pytest.raises(ThreatMonitoredError):
            await threat_repository.create_pending_occurrence(threat)
示例#5
0
    async def test_success(self, database, threat_factory,
                           report_threat_dto_factory):
        id_ = 1
        threat = threat_factory(id=id_)
        insert_threat(threat.dict())
        dto = report_threat_dto_factory()

        result = await threat_repository.register_history_change(id_, dto)

        assert result.threat_id == id_

        getter = itemgetter("danger_level", "location")
        assert getter(result.records[0].dict()) == getter(dto.dict())
示例#6
0
    async def test_found(self, database, threat_factory):
        id_ = 1
        threat = threat_factory(id=id_)
        insert_threat(threat.dict())

        record = assoc(dissoc(threat.dict(), "id"), "threat_id", id_)
        insert_threat_record(record)

        result = await threat_repository.fetch_history_or_raise(id_)

        assert result
        assert result.threat_id == id_

        getter = itemgetter("danger_level", "location")
        assert getter(result.records[0].dict()) == getter(record)
示例#7
0
    async def test_update(self, database, threat_factory,
                          report_threat_dto_factory):
        id_ = 1
        name = "darkterror"
        threat = threat_factory(id=id_, name=name)
        insert_threat(threat.dict())
        insert_threat_record(
            assoc(dissoc(threat.dict(), "id"), "threat_id", id_))

        dto = report_threat_dto_factory(name=name)
        result = await threat_repository.upsert(dto)

        getter = itemgetter("danger_level", "location")
        assert getter(result.dict()) == getter(dto.dict())
        assert result.name == threat.name
示例#8
0
    async def test_update_record_history(self, database, threat_factory,
                                         report_threat_dto_factory):
        id_ = 1
        name = "tidehunter"
        threat = threat_factory(id=id_, name=name)
        insert_threat(threat.dict())
        insert_threat_record(
            assoc(dissoc(threat.dict(), "id"), "threat_id", id_))

        dto = report_threat_dto_factory(name=name)
        await threat_repository.upsert(dto)
        history = await threat_repository.fetch_history_or_raise(id_)

        assert history.threat_id == id_

        getter = attrgetter("danger_level", "location")
        past, present = history.records
        assert getter(past) == getter(threat)
        assert getter(present) == getter(dto)