예제 #1
0
    def setUp(self):
        options = {"url": "http://salvius.org/images/news02.jpg"}
        connection = Camera(options)

        # Mock the the image returned by the download method
        connection.download_image = MagicMock(return_value="tests/news.jpg")

        self.ocr = OCR(options, connection)
예제 #2
0
    def setUp(self):
        options = {
            "url": "http://salvius.org/images/news02.jpg"
        }
        connection = Camera(options)

        # Mock the the image returned by the download method
        connection.download_image = MagicMock(return_value="tests/news.jpg")

        self.ocr = OCR(options, connection)
예제 #3
0
class TestCameraAdaptor(TestCase):

    def setUp(self):
        options = {
            "url": "http://www.gravatar.com/avatar/0?d=mm"
        }
        self.camera = Camera(options)

    def test_get_image(self):
        """
        Test that the image file can be downloaded.
        """
        import os
        image_path = self.camera.download_image()
        self.assertTrue(os.path.exists(image_path))

        # Clean up after testing
        os.remove(image_path)

    def test_has_changed(self):
        """
        Test that False is returned when the
        image is checked for the first time.
        """
        response = self.camera.has_changed()
        self.assertTrue(response)
        self.assertFalse(self.camera.image_last_modified is None)

    def test_has_changed_modified(self):
        """
        Test that True is returned when the
        last modified header changes.
        """
        pass

    def test_has_changed_not_modified(self):
        """
        Test that False is returned when the
        last modified header has not changed.
        """
        pass

    def test_has_changed_no_modified_header(self):
        """
        Test that True is returned when the
        last modified header is not present.
        """
        pass
예제 #4
0
class TestCameraAdaptor(TestCase):
    def setUp(self):
        options = {"url": "http://www.gravatar.com/avatar/0?d=mm"}
        self.camera = Camera(options)

    def test_get_image(self):
        """
        Test that the image file can be downloaded.
        """
        import os
        image_path = self.camera.download_image()
        self.assertTrue(os.path.exists(image_path))

        # Clean up after testing
        os.remove(image_path)

    def test_has_changed(self):
        """
        Test that False is returned when the
        image is checked for the first time.
        """
        response = self.camera.has_changed()
        self.assertTrue(response)
        self.assertFalse(self.camera.image_last_modified is None)

    def test_has_changed_modified(self):
        """
        Test that True is returned when the
        last modified header changes.
        """
        pass

    def test_has_changed_not_modified(self):
        """
        Test that False is returned when the
        last modified header has not changed.
        """
        pass

    def test_has_changed_no_modified_header(self):
        """
        Test that True is returned when the
        last modified header is not present.
        """
        pass
예제 #5
0
 def setUp(self):
     options = {"url": "http://www.gravatar.com/avatar/0?d=mm"}
     self.camera = Camera(options)
예제 #6
0
 def setUp(self):
     options = {
         "url": "http://www.gravatar.com/avatar/0?d=mm"
     }
     self.camera = Camera(options)
예제 #7
0
 def setUp(self):
     options = {"url": "http://www.gravatar.com/avatar/0?d=mm"}
     self.connection = Camera(options)
     self.camera = LightSensor(options, self.connection)