Skip to content
test.py 3.12 KiB
Newer Older
# -*- coding: utf-8 -*-

# Copyright(C) 2017      Phyks (Lucas Verney)
#
# This file is part of a weboob module.
# This weboob module is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This weboob module is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this weboob module. If not, see <http://www.gnu.org/licenses/>.

from __future__ import unicode_literals

from weboob.capabilities.housing import (
    Query, POSTS_TYPES, ADVERT_TYPES
)
from weboob.tools.capabilities.housing.housing_test import HousingTest
from weboob.tools.test import BackendTest


class FonciaTest(BackendTest, HousingTest):
    MODULE = 'foncia'

    FIELDS_ALL_HOUSINGS_LIST = [
        "id", "type", "advert_type", "house_type", "url", "title", "area",
        "cost", "currency", "date", "location", "text", "details"
    ]
    FIELDS_ANY_HOUSINGS_LIST = [
        "photos",
        "rooms"
    ]
    FIELDS_ALL_SINGLE_HOUSING = [
        "id", "url", "type", "advert_type", "house_type", "title", "area",
        "cost", "currency", "utilities", "date", "location", "text", "phone",
        "DPE", "details"
    ]
    FIELDS_ANY_SINGLE_HOUSING = [
        "bedrooms",
        "photos",
        "rooms"
Phyks (Lucas Verney)'s avatar
Phyks (Lucas Verney) committed

    def test_foncia_rent(self):
        query = Query()
Phyks (Lucas Verney)'s avatar
Phyks (Lucas Verney) committed
        query.area_min = 20
        query.cost_max = 1500
        query.type = POSTS_TYPES.RENT
        query.cities = []
Phyks (Lucas Verney)'s avatar
Phyks (Lucas Verney) committed
        for city in self.backend.search_city('paris'):
            city.backend = self.backend.name
            query.cities.append(city)
        self.check_against_query(query)
Phyks (Lucas Verney)'s avatar
Phyks (Lucas Verney) committed
    def test_foncia_sale(self):
        query = Query()
Phyks (Lucas Verney)'s avatar
Phyks (Lucas Verney) committed
        query.area_min = 20
        query.type = POSTS_TYPES.SALE
        query.cities = []
Phyks (Lucas Verney)'s avatar
Phyks (Lucas Verney) committed
        for city in self.backend.search_city('paris'):
            city.backend = self.backend.name
            query.cities.append(city)
        self.check_against_query(query)
Phyks (Lucas Verney)'s avatar
Phyks (Lucas Verney) committed

    def test_foncia_furnished_rent(self):
Phyks (Lucas Verney)'s avatar
Phyks (Lucas Verney) committed
        query.area_min = 20
        query.cost_max = 1500
        query.type = POSTS_TYPES.FURNISHED_RENT
Phyks (Lucas Verney)'s avatar
Phyks (Lucas Verney) committed
        for city in self.backend.search_city('paris'):
            city.backend = self.backend.name
            query.cities.append(city)
        self.check_against_query(query)
Phyks (Lucas Verney)'s avatar
Phyks (Lucas Verney) committed
    def test_foncia_personal(self):
        query = Query()
Phyks (Lucas Verney)'s avatar
Phyks (Lucas Verney) committed
        query.area_min = 20
        query.cost_max = 900
        query.type = POSTS_TYPES.RENT
Phyks (Lucas Verney)'s avatar
Phyks (Lucas Verney) committed
        query.advert_types = [ADVERT_TYPES.PERSONAL]
        query.cities = []
        for city in self.backend.search_city('paris'):
            city.backend = self.backend.name
            query.cities.append(city)

Phyks (Lucas Verney)'s avatar
Phyks (Lucas Verney) committed
        results = list(self.backend.search_housings(query))
        self.assertEqual(len(results), 0)