Ejemplo n.º 1
0
    def test_getNetloc(self):
        # Given
        sut = Shop()
        sut.url = "https://www.43einhalb.com/new-balance-m997sob-made-in-usa"
        expectedNetloc = "www.43einhalb.com"

        # When
        result = sut.getNetloc()
        # Then
        self.assertEqual(expectedNetloc, result)

        # Given
        sut.url = "https://bubblegum.com/en/new-996-vhb-wl996vhb.html"
        expectedNetloc = "bubblegum.com"
        # When
        result = sut.getNetloc()
        # Then
        self.assertEqual(expectedNetloc, result)

        # Given
        sut.url = "http://www.somewhere.de/bubu/ghj45-3879475?req=nothing"
        expectedNetloc = "www.somewhere.de"
        # When
        result = sut.getNetloc()
        # Then
        self.assertEqual(expectedNetloc, result)
Ejemplo n.º 2
0
    def test_assignProducts(self):
        # Given
        sut = Shop()
        shopURL = "http://this-is-the-netloc-part.com"
        sut.url = shopURL

        # Any product with the same URL netloc part as the shop's URL netloc part
        # is expected to be added to the shop's products list.
        productMock_01 = mock.Mock(spec=Product)
        productMock_01.url = "http://this-is-the-netloc-part.com/en/some_product_link_284734.htm"
        productMock_02 = mock.Mock(spec=Product)
        productMock_02.url = "http://this-is-the-netloc-part.com/en/some_other_product_9274692"
        productMock_03 = mock.Mock(spec=Product)
        productMock_03.url = "http://another-shop.org/some_other_product_9274692.php"

        products = list()
        products.extend([productMock_01, productMock_02, productMock_03])

        # When
        addedProducts = sut.assignProducts(products)

        # Then
        # productMock_03 should NOT be in the shop's products list.
        self.assertEqual(2, len(sut.products))
        self.assertEqual(productMock_01.url, sut.products[0].url)
        self.assertEqual(productMock_02.url, sut.products[1].url)
        self.assertIsInstance(addedProducts, list)
        self.assertEqual(2, len(addedProducts))
Ejemplo n.º 3
0
    def test_url_shouldGetAndSet(self):
        # Given
        sut = Shop()

        # When Setter
        sut.url = "https://something-to-test/shop"
        # Then Getter
        self.assertEqual("https://something-to-test/shop", sut.url)
Ejemplo n.º 4
0
    def test_getNetloc_shouldRaiseWhenNotExtractable(self):
        # Given
        sut = Shop()
        sut.url = "www.scary-tests.com/url-has-missing-schema.html"

        # When
        with self.assertRaises(ValueError):
            sut.getNetloc()
Ejemplo n.º 5
0
    def test_assignProducts_shouldNotAddIfNoProducts(self):
        # Given
        sut = Shop()
        shopURL = "http://this-again-is-a-netloc-part.com"
        sut.url = shopURL

        products = None
        # When
        # noinspection PyTypeChecker
        sut.assignProducts(products)
        # Then
        self.assertEqual(0, len(sut.products))

        # Given
        products = list()
        # When
        addedProducts = sut.assignProducts(products)
        # Then
        self.assertEqual(0, len(sut.products))
        self.assertIsInstance(addedProducts, list)
        self.assertEqual(0, len(addedProducts))
Ejemplo n.º 6
0
    def create2Shops(self) -> None:
        """ Caution: Do not change values as they are tested against
        :return: None
        """
        size01 = Size()
        size01.uid = str(
            uuid.UUID(hex="1528dae6-188f-4d7e-8a6c-5af44ce5c222", version=4))
        size01.sizeEU = "40 1/3"
        size01.isInStock = True
        size01.price = 56.99
        size01.url = "http://oneshop.com/bottles/92743867ACTFGJ-UTU/40.1.3.htm"
        size01.urlAddToCart = "http://oneshop.com/bottles/atc/40.1.3-92743867ACTFGJ-UTU.htm"

        size02 = Size()
        size02.uid = str(
            uuid.UUID(hex="5f561c62-8502-4ec1-8f46-f0adb5e8254c", version=4))
        size02.sizeEU = "43"
        size02.isInStock = False
        size02.price = 54.99
        size02.url = "http://oneshop.com/bottles/92743867ACTFGJ-UTU/43.htm"
        size02.urlAddToCart = "http://oneshop.com/bottles/atc/43-92743867ACTFGJ-UTU.htm"

        size03 = Size()
        size03.uid = str(
            uuid.UUID(hex="e070b0c9-769d-4c13-a208-f7207f0970db", version=4))
        size03.sizeEU = "44.5"
        size03.isInStock = True
        size03.price = 189.50
        size03.url = "https://megashop.com/shoes/44.5-9a734hd78.htm"
        size03.urlAddToCart = "https://megashop.com/shoes/atc/44.5-9a734hd78#g89.php"

        product01 = Product()
        product01.uid = str(
            uuid.UUID(hex="2857027b-cf25-4639-965e-0e22f9f4c755", version=4))
        product01.url = "http://oneshop.com/bottles/92743867ACTFGJ-UTU"
        product01.name = "Biggest Corona Bottle ever"
        product01.setReleaseDate(dtt.datetime(2020, 9, 30, 13, 50, 59),
                                 timezone="Europe/Berlin")
        product01.basePrice = 55.49
        product01.lastScanStamp = 1588548868.304869  # setLastScanNow()
        product01.sizes = [size01, size02]

        product02 = Product()
        product02.uid = str(
            uuid.UUID(hex="9cab557a-419a-4883-8287-f09f7244b225", version=4))
        product02.url = "http://oneshop.com/bottles/1362836400447GT-UTU"
        product02.name = "Neck Bottle"
        product02.setReleaseDate(dtt.datetime(2023, 1, 30, 15, 40, 35),
                                 timezone="Europe/Berlin")
        product02.basePrice = 3.22
        product02.lastScanStamp = 1588548911.230381  # setLastScanNow()
        product02.sizes = []

        product03 = Product()
        product03.uid = str(
            uuid.UUID(hex="f0700293-693c-48a6-8f01-014e07151d99", version=4))
        product03.url = "https://www.megashop.com/shoes/9a734hd78.html"
        product03.urlThumb = "https://www.megashop.com/shoes/thumb-9a734hd78.html"
        product03.name = "Hey Bro Male"
        product03.setReleaseDate(dtt.datetime(2028, 11, 1, 8, 2, 40),
                                 timezone="Europe/Berlin")
        product03.basePrice = 190
        product03.lastScanStamp = 1588548274.102859  # setLastScanNow()
        product03.sizes = [size03]

        shop01 = Shop()
        # ID is usually set by the DBMS, we explicitly set it for equality checks, too:
        shop01.uid = str(
            uuid.UUID(hex="73f9cac8-ebdc-4d9b-8163-d04d09f06cd9", version=4))
        shop01.name = "Bottle shop"
        shop01.url = "http://oneshop.com/bottles"
        shop01.products = [product01, product02]

        shop02 = Shop()
        # ID is usually set by the DBMS, we explicitly set it for equality checks, too:
        shop02.uid = str(
            uuid.UUID(hex="69ec8e1b-8812-4413-ad72-b74364e2fa7a", version=4))
        shop02.name = "Megashop"
        shop02.url = "https://www.megashop.com/shoes"
        shop02.products = [product03]

        self.shops = [shop01, shop02]