Esempio n. 1
0
    def setUpClass(cls):
        DomainTest.setUpClass()
        RECREATE_SQL = """
        DROP TABLE IF EXISTS dung;
        DROP TABLE IF EXISTS dong;
        DROP TABLE IF EXISTS ding;

        CREATE TABLE ding (
            id uuid PRIMARY KEY DEFAULT uuid_generate_v1(),
            te_id bigint UNIQUE REFERENCES transaction_entry(id),
            int_field integer default 0,
            str_field text default ''
        );
        CREATE TABLE dong (
            id uuid PRIMARY KEY DEFAULT uuid_generate_v1(),
            te_id bigint UNIQUE REFERENCES transaction_entry(id),
            bool_field boolean default false,
            ding_id uuid REFERENCES ding(id) ON UPDATE CASCADE
        );
        CREATE TABLE dung (
            id uuid PRIMARY KEY DEFAULT uuid_generate_v1(),
            identifier SERIAL NOT NULL,
            te_id bigint UNIQUE REFERENCES transaction_entry(id),
            ding_id uuid REFERENCES ding(id) ON UPDATE CASCADE
        );
        """
        cls.store.execute(RECREATE_SQL)
        cls.store.commit()
Esempio n. 2
0
    def setUpClass(cls):
        DomainTest.setUpClass()
        RECREATE_SQL = """
        DROP TABLE IF EXISTS dung;
        DROP TABLE IF EXISTS dong;
        DROP TABLE IF EXISTS ding;

        CREATE TABLE ding (
            id uuid PRIMARY KEY DEFAULT uuid_generate_v1(),
            te_id bigint UNIQUE REFERENCES transaction_entry(id),
            int_field integer default 0,
            str_field text default ''
        );
        CREATE TABLE dong (
            id uuid PRIMARY KEY DEFAULT uuid_generate_v1(),
            te_id bigint UNIQUE REFERENCES transaction_entry(id),
            bool_field boolean default false,
            ding_id uuid REFERENCES ding(id) ON UPDATE CASCADE
        );
        CREATE TABLE dung (
            id uuid PRIMARY KEY DEFAULT uuid_generate_v1(),
            identifier SERIAL NOT NULL,
            te_id bigint UNIQUE REFERENCES transaction_entry(id),
            ding_id uuid REFERENCES ding(id) ON UPDATE CASCADE
        );
        """
        cls.store.execute(RECREATE_SQL)
        cls.store.commit()
Esempio n. 3
0
 def tearDown(self):
     store = new_store()
     for person in store.find(Person, name=NAME):
         store.remove(person)
     store.commit()
     DomainTest.tearDown(self)
     store.close()
Esempio n. 4
0
    def tearDown(self):
        # Make sure to remove all committed persons from the database
        with new_store() as store:
            test_names = [u'dummy transaction test', u'dummy', u'doe', u'john']
            store.find(Person, Person.name.is_in(test_names)).remove()

        DomainTest.tearDown(self)
Esempio n. 5
0
 def tearDown(self):
     store = new_store()
     for person in store.find(Person, name=NAME):
         store.remove(person)
     store.commit()
     DomainTest.tearDown(self)
     store.close()
Esempio n. 6
0
    def tearDown(self):
        # Make sure to remove all committed persons from the database
        with new_store() as store:
            test_names = [u'dummy transaction test', u'dummy', u'doe', u'john']
            store.find(Person, Person.name.is_in(test_names)).remove()

        DomainTest.tearDown(self)
Esempio n. 7
0
 def setUp(self):
     DomainTest.setUp(self)
     self._base_category = SellableCategory(description=u"Cigarro",
                                            store=self.store)
     self._category = SellableCategory(description=u"Hollywood",
                                       category=self._base_category,
                                       suggested_markup=10,
                                       store=self.store)
Esempio n. 8
0
 def setUp(self):
     DomainTest.setUp(self)
     self._base_category = SellableCategory(description=u"Cigarro",
                                            store=self.store)
     self._category = SellableCategory(description=u"Hollywood",
                                       category=self._base_category,
                                       suggested_markup=10,
                                       store=self.store)
Esempio n. 9
0
 def tearDown(self):
     DomainTest.tearDown(self)
     try:
         os.unlink(self._filename)
     except OSError:
         pass
     if self._pdf_html:
         try:
             os.unlink(self._pdf_html)
         except OSError:
             pass
Esempio n. 10
0
 def tearDown(self):
     DomainTest.tearDown(self)
     try:
         os.unlink(self._filename)
     except OSError:
         pass
     if self._pdf_html:
         try:
             os.unlink(self._pdf_html)
         except OSError:
             pass
Esempio n. 11
0
    def setUp(self):
        from stoqlib.database.runtime import new_store
        self.store = new_store()
        self.fake.set_store(self.store)
        self.set_store(self.store)

        self._unhandled_exceptions = []
        self._old_hook = sys.excepthook
        sys.excepthook = self._except_hook
        test_system_notifier.reset()
        DomainTest.setUp(self)
Esempio n. 12
0
    def tearDown(self):
        sys.excepthook = self._old_hook
        DomainTest.tearDown(self)

        messages = test_system_notifier.reset()
        if messages:
            self.fail("Unhandled messages: %r, use @mock.patch()" % (
                messages, ))

        if self._unhandled_exceptions:
            self.fail("Unhandled exceptions: %r" % (
                self._unhandled_exceptions))
Esempio n. 13
0
    def tearDown(self):
        sys.excepthook = self._old_hook
        DomainTest.tearDown(self)

        messages = test_system_notifier.reset()
        if messages:
            self.fail("Unhandled messages: %r, use @mock.patch()" % (
                messages, ))

        if self._unhandled_exceptions:
            self.fail("Unhandled exceptions: %r" % (
                self._unhandled_exceptions))
Esempio n. 14
0
    def setUpClass(cls):
        DomainTest.setUpClass()
        RECREATE_SQL = """
        DROP TABLE IF EXISTS xml_table;

        CREATE TABLE xml_table (
            id uuid PRIMARY KEY DEFAULT uuid_generate_v1(),
            te_id bigint UNIQUE REFERENCES transaction_entry(id),
            data xml
        );
        """
        cls.store.execute(RECREATE_SQL)
        cls.store.commit()
Esempio n. 15
0
 def setUpClass(cls):
     DomainTest.setUpClass()
     RECREATE_SQL = """
     DROP TABLE IF EXISTS ding;
     CREATE TABLE ding (
         id uuid PRIMARY KEY DEFAULT uuid_generate_v1(),
         te_id bigint UNIQUE REFERENCES transaction_entry(id),
         int_field integer default 0,
         str_field text default ''
     );
     """
     cls.store.execute(RECREATE_SQL)
     cls.store.commit()
Esempio n. 16
0
    def setUpClass(cls):
        DomainTest.setUpClass()
        RECREATE_SQL = """
        DROP TABLE IF EXISTS xml_table;

        CREATE TABLE xml_table (
            id uuid PRIMARY KEY DEFAULT uuid_generate_v1(),
            te_id bigint UNIQUE REFERENCES transaction_entry(id),
            data xml
        );
        """
        cls.store.execute(RECREATE_SQL)
        cls.store.commit()
Esempio n. 17
0
    def setUpClass(cls):
        DomainTest.setUpClass()
        RECREATE_SQL = """
        DROP TABLE IF EXISTS test_table;

        CREATE TABLE test_table (
            id uuid PRIMARY KEY DEFAULT uuid_generate_v1(),
            te_id bigint UNIQUE REFERENCES transaction_entry(id),
            is_high BOOLEAN DEFAULT NULL,
            power_level INTEGER DEFAULT NULL
        );
        """
        cls.store.execute(RECREATE_SQL)
        cls.store.commit()
Esempio n. 18
0
 def setUpClass(cls):
     DomainTest.setUpClass()
     cls._ui = NFeUI()
Esempio n. 19
0
 def setUp(self):
     DomainTest.setUp(self)
     self.branch = self.create_branch()
Esempio n. 20
0
 def setUp(self):
     DomainTest.setUp(self)
     self.branch = get_current_branch(self.store)
Esempio n. 21
0
 def setUp(self):
     DomainTest.setUp(self)
     self.sparam = sysparam
Esempio n. 22
0
 def setUp(self):
     self._unhandled_exceptions = []
     self._old_hook = sys.excepthook
     sys.excepthook = self._except_hook
     test_system_notifier.reset()
     DomainTest.setUp(self)
Esempio n. 23
0
 def setUp(self):
     DomainTest.setUp(self)
     sellable = self.create_sellable()
     self.product = Product(sellable=sellable, store=self.store)
Esempio n. 24
0
 def setUp(self):
     DomainTest.setUp(self)
     self._filename = tempfile.mktemp(prefix="stoqlib-test-boleto-",
                                      suffix=".pdf")
     self._pdf_html = None
Esempio n. 25
0
 def setUp(self):
     DomainTest.setUp(self)
     self._filename = tempfile.mktemp(prefix="stoqlib-test-boleto-",
                                      suffix=".pdf")
     self._pdf_html = None
Esempio n. 26
0
 def setUp(self):
     DomainTest.setUp(self)
     sellable = self.create_sellable()
     self.product = Product(sellable=sellable,
                            store=self.store)
Esempio n. 27
0
 def setUp(self):
     DomainTest.setUp(self)
     self.sparam = sysparam
Esempio n. 28
0
 def setUp(self):
     DomainTest.setUp(self)
     self.branch = get_current_branch(self.store)
Esempio n. 29
0
 def setUp(self):
     DomainTest.setUp(self)
     self.qe = QueryExecuter(self.store)
     self.qe.set_search_spec(ClientCategory)
     self.sfilter = mock.Mock()
     self.qe.set_filter_columns(self.sfilter, ['name'])
Esempio n. 30
0
 def setUpClass(cls):
     DomainTest.setUpClass()
     cls._ui = NFeUI()
Esempio n. 31
0
 def setUp(self):
     self._unhandled_exceptions = []
     self._old_hook = sys.excepthook
     sys.excepthook = self._except_hook
     test_system_notifier.reset()
     DomainTest.setUp(self)
Esempio n. 32
0
 def setUp(self):
     DomainTest.setUp(self)
     self._base_category = self._create_category(u'Monitor')
Esempio n. 33
0
 def setUp(self):
     DomainTest.setUp(self)
     self._base_category = self._create_category(u'Monitor')
Esempio n. 34
0
 def setUp(self):
     DomainTest.setUp(self)
     self.branch = self.create_branch()