Beispiel #1
0
def test__given_different_locations__eq__success():
    # Arrange
    location_a = JhuLocation(**TestBase.VALID_JHU_LOCATION)
    location_b = JhuLocation(**TestBase.VALID_JHU_LOCATION)
    location_b.country = "CAN"

    # Act
    assert location_a != location_b
Beispiel #2
0
    async def get_state_data(self):
        promises = await asyncio.gather(
            self.DATA_SERVICE.get_data(self.ENDPOINT),
            self.LOCATION_SERVICE.get_state_data(),
        )

        results_by_county, last_updated = promises[0]
        state_data = promises[1]

        # Aggregate results on a per state basis
        state_results = {}
        for result in results_by_county:
            key = tuple(result.id.split("@")[:2])

            if key not in state_results:
                properties_for_state = (state_data[key] if key in state_data
                                        else LocationProperties())
                state_results[key] = JhuLocation(
                    id=Functions.to_location_id(key),
                    uid=properties_for_state.uid,
                    iso2=properties_for_state.iso2,
                    iso3=properties_for_state.iso3,
                    code3=properties_for_state.code3,
                    fips=properties_for_state.fips,
                    county=properties_for_state.admin2,
                    state=result.state,
                    country=result.country,
                    latitude=properties_for_state.coordinates.latitude,
                    longitude=properties_for_state.coordinates.longitude,
                    last_updated=last_updated,
                    timelines={
                        "confirmed": {},
                        "deaths": {}
                    },
                    latest=None,
                )

            jhu_location = state_results[key]
            for confirmed_date, count in result.timelines[
                    "confirmed"].category.items():
                value = jhu_location.timelines["confirmed"].get(
                    confirmed_date, 0)
                jhu_location.timelines["confirmed"][
                    confirmed_date] = value + count

            for deaths_date, count in result.timelines[
                    "deaths"].category.items():
                value = jhu_location.timelines["deaths"].get(deaths_date, 0)
                jhu_location.timelines["deaths"][deaths_date] = value + count

        # Remap dicts to Category
        for _, state in state_results.items():
            state.timelines["confirmed"] = Category(
                state.timelines["confirmed"])
            state.timelines["deaths"] = Category(state.timelines["deaths"])
            state.latest = Statistics(
                state.timelines["confirmed"].latest,
                state.timelines["deaths"].latest).to_dict()

        return state_results.values(), last_updated
Beispiel #3
0
def test__given_jhu_location__to_dict__success():
    # Arrange
    location = JhuLocation(**TestBase.VALID_JHU_LOCATION)

    # Act & Assert
    assert location.to_dict() == {
        "id": TestBase.VALID_JHU_LOCATION["id"],
        "country": TestBase.VALID_JHU_LOCATION["country"],
        "last_updated": TestBase.VALID_JHU_LOCATION["last_updated"],
        "latest": TestBase.VALID_JHU_LOCATION["latest"],
        "uid": TestBase.VALID_JHU_LOCATION["uid"],
        "iso2": TestBase.VALID_JHU_LOCATION["iso2"],
        "iso3": TestBase.VALID_JHU_LOCATION["iso3"],
        "code3": TestBase.VALID_JHU_LOCATION["code3"],
        "state": TestBase.VALID_JHU_LOCATION["state"],
        "county": TestBase.VALID_JHU_LOCATION["county"],
        "fips": TestBase.VALID_JHU_LOCATION["fips"],
        "latitude": TestBase.VALID_JHU_LOCATION["latitude"],
        "longitude": TestBase.VALID_JHU_LOCATION["longitude"],
    }
Beispiel #4
0
    async def get_country_data(self) -> (List[JhuLocation], str):
        """Notes: Function currently designed only for US data
        """
        promises = await asyncio.gather(
            self.DATA_SERVICE.get_data(self.ENDPOINT), )

        results_by_county, last_updated = promises[0]

        location_properties = JhuLocation(
            id=Functions.to_location_id(("US", )),
            uid="840",
            iso2="US",
            iso3="USA",
            code3="USA",
            fips="",
            county="",
            state="",
            country="US",
            latitude="37.0902",  # TODO: Do not hardcode
            longitude="-95.7129",
            last_updated=last_updated,
            timelines={
                "confirmed": {},
                "deaths": {}
            },
            latest=None,
        )

        for result in results_by_county:
            for confirmed_date, count in result.timelines[
                    "confirmed"].category.items():
                value = location_properties.timelines["confirmed"].get(
                    confirmed_date, 0)
                location_properties.timelines["confirmed"][confirmed_date] = (
                    value + count)

            for deaths_date, count in result.timelines[
                    "deaths"].category.items():
                value = location_properties.timelines["deaths"].get(
                    deaths_date, 0)
                location_properties.timelines["deaths"][
                    deaths_date] = value + count

        location_properties.timelines["confirmed"] = Category(
            location_properties.timelines["confirmed"])
        location_properties.timelines["deaths"] = Category(
            location_properties.timelines["deaths"])
        location_properties.latest = Statistics(
            location_properties.timelines["confirmed"].latest,
            location_properties.timelines["deaths"].latest,
        ).to_dict()

        return [location_properties], last_updated
def _initializer(entry, confirmed, deaths):
    return JhuLocation(
        id=entry["id"],
        country=entry["country"],
        county=entry["county"],
        state=entry["state"],
        fips=entry["fips"],
        timelines={
            "confirmed": confirmed,
            "deaths": deaths,
        },
        last_updated=entry["last_updated"],
        latest=entry["latest"],
        uid=entry["uid"],
        iso2=entry["iso2"],
        iso3=entry["iso3"],
        code3=entry["code3"],
        latitude=entry["latitude"],
        longitude=entry["longitude"],
    )
Beispiel #6
0
    async def get_data(
        self, endpoint: str, data_type: str = ""
    ) -> (List[JhuLocation], str):
        """Method that retrieves data from JHU CSSEGSI.
        
        Arguments:
            endpoint {str} -- string that represents endpoint to get data from.
            data_type {str} -- string that represents type of data being fetched. Used as key for cache.

        Returns:
            Location[], str -- returns list of location stats and the last updated date.
        """
        _start = time.time() * 1000.0
        promises = await asyncio.gather(
            self._fetch_csv_data(endpoint, "confirmed"),
            self._fetch_csv_data(endpoint, "deaths"),
        )
        _end = time.time() * 1000.0
        logger.info(f"Elapsed _fetch_csv_data for all stats {str(_end-_start)}ms")

        _start = time.time() * 1000.0
        tagged_promises = self._tag_promised_results(
            ["confirmed", "deaths"], promises
        )  # [("confirmed", ...), ...]
        location_result = await self._zip_results(
            tagged_promises
        )  # Store the final map of datapoints { "Locations": {}, "first_date": {} }
        _end = time.time() * 1000.0
        logger.info(f"Elapsed _zip_results for all stats {str(_end-_start)}ms")

        locations = []
        last_updated = Functions.get_formatted_date()

        for location_id, events, in location_result.items():
            confirmed_map = events["confirmed"]
            deaths_map = events["deaths"]

            confirmed = Category(confirmed_map)
            deaths = Category(deaths_map)

            locations.append(
                JhuLocation(
                    id=location_id,
                    uid=events["uid"],
                    iso2=events["iso2"],
                    iso3=events["iso3"],
                    code3=events["code3"],
                    fips=events["FIPS"],
                    county=events["Admin2"],
                    state=events["Province_State"],
                    country=events["Country_Region"],
                    latitude=events["Lat"],
                    longitude=events["Long_"],
                    last_updated=last_updated,
                    timelines={"confirmed": confirmed, "deaths": deaths},
                    latest=Statistics(
                        confirmed=confirmed.latest, deaths=deaths.latest
                    ).to_dict(),
                )
            )

        logger.info("Finished transforming JHU results.")
        return locations, last_updated
Beispiel #7
0
        "country": TestBase.VALID_NYT_LOCATION["country"],
        "last_updated": TestBase.VALID_NYT_LOCATION["last_updated"],
        "latest": TestBase.VALID_NYT_LOCATION["latest"],
        "state": TestBase.VALID_NYT_LOCATION["state"],
        "county": TestBase.VALID_NYT_LOCATION["county"],
        "fips": TestBase.VALID_NYT_LOCATION["fips"],
    }


@pytest.mark.parametrize(
    "a, b",
    [
        (Location(**TestBase.VALID_LOCATION),
         Location(**TestBase.VALID_LOCATION)),
        (
            JhuLocation(**TestBase.VALID_JHU_LOCATION),
            JhuLocation(**TestBase.VALID_JHU_LOCATION),
        ),
        (
            NytLocation(**TestBase.VALID_NYT_LOCATION),
            NytLocation(**TestBase.VALID_NYT_LOCATION),
        ),
    ],
)
def test__given_equal_locations__eq__success(a, b):
    assert a == b


@pytest.mark.parametrize(
    "a, b",
    [