How to use test_io_json method in pandera

Best Python code snippet using pandera_python

test_util_wspos.py

Source: test_util_wspos.py Github

copy

Full Screen

1#!/​usr/​bin/​env python32# -*- coding:utf-8 -*-3__author__ = 'Mu Yang <http:/​/​muyang.pro>'4__copyright__ = '2018-2020 CKIP Lab'5__license__ = 'GPL-3.0'6import pytest7from _base import _TestBase8from ckipnlp.container.util.wspos import *9from ckipnlp.container.seg import *10################################################################################################################################11class TestWsPosToken(_TestBase):12 obj_class = WsPosToken13 text_in = '中文字(Na)'14 list_in = [ '中文字', 'Na', ]15 dict_in = { 'word': '中文字', 'pos': 'Na', }16 def _assert_body(self, obj):17 assert obj.word == '中文字'18 assert obj.pos == 'Na'19 def test_str(self):20 obj = self.obj_class.from_text(self.text_in)21 assert str(obj) == self.text_in22################################################################################################################################23class TestWsPosSentence(_TestBase):24 obj_class = WsPosSentence25 test_io_list = NotImplemented26 test_io_dict = NotImplemented27 test_io_json = NotImplemented28 text_in = '中文字(Na) 耶(T) ,(COMMACATEGORY) 啊(I) 哈(D) 哈哈(D) 。(PERIODCATEGORY)'29 def test_io_text(self):30 word_obj, pos_obj = self.obj_class.from_text(self.text_in)31 self._assert_body(word_obj, pos_obj)32 text_out = self.obj_class.to_text(word_obj, pos_obj)33 assert text_out, self.text_in34 def test_init(self):35 with pytest.raises(TypeError):36 obj = self.obj_class()37 def _assert_body(self, word_obj, pos_obj):38 assert isinstance(word_obj, SegSentence)39 assert len(word_obj) == 740 assert word_obj == [ '中文字', '耶', ',', '啊', '哈', '哈哈', '。', ]41 assert isinstance(pos_obj, SegSentence)42 assert len(pos_obj) == 743 assert pos_obj == [ 'Na', 'T', 'COMMACATEGORY', 'I', 'D', 'D', 'PERIODCATEGORY', ]44################################################################################################################################45class TestWsPosParagraph(_TestBase):46 obj_class = WsPosParagraph47 test_io_list = NotImplemented48 test_io_dict = NotImplemented49 test_io_json = NotImplemented50 text_in = [51 '中文字(Na) 耶(T) ,(COMMACATEGORY) 啊(I) 哈(D) 哈哈(D) 。(PERIODCATEGORY)',52 '「(PARENTHESISCATEGORY) 完蛋(VH) 了(T) !(EXCLAMATIONCATEGORY) 」(PARENTHESISCATEGORY) ,(COMMACATEGORY) 畢卡索(Nb) 他(Nh) 想(VE)',53 ]54 def test_io_text(self):55 word_obj, pos_obj = self.obj_class.from_text(self.text_in)56 self._assert_body(word_obj, pos_obj)57 text_out = self.obj_class.to_text(word_obj, pos_obj)58 assert text_out, self.text_in59 def test_init(self):60 with pytest.raises(TypeError):61 obj = self.obj_class()62 def _assert_body(self, word_obj, pos_obj):63 assert isinstance(word_obj, SegParagraph)64 assert len(word_obj) == 265 assert len(word_obj[0]) == 766 assert word_obj[0] == [ '中文字', '耶', ',', '啊', '哈', '哈哈', '。', ]67 assert len(word_obj[1]) == 968 assert word_obj[1] == [ '「', '完蛋', '了', '!', '」', ',', '畢卡索', '他', '想', ]69 assert isinstance(pos_obj, SegParagraph)70 assert len(pos_obj) == 271 assert len(pos_obj[0]) == 772 assert pos_obj[0] == [ 'Na', 'T', 'COMMACATEGORY', 'I', 'D', 'D', 'PERIODCATEGORY', ]73 assert len(pos_obj[1]) == 9...

Full Screen

Full Screen

test_Taxonomy.py

Source: test_Taxonomy.py Github

copy

Full Screen

1import os2import unittest3import taxidTools456current_path = os.path.dirname(__file__)7nodes = os.path.join(current_path, "data", "mininodes.dmp")8rankedlineage = os.path.join(current_path, "data", "minirankedlineage.dmp")91011class TestTaxdump(unittest.TestCase):12 13 def setUp(self):14 self.parent = taxidTools.Node(taxid = 0, name = "root", rank = "root", parent = None)15 self.child = taxidTools.Node(taxid = 1, name = "child", rank = "child", parent = self.parent)16 self.txd = taxidTools.Taxonomy({'0': self.parent, '1': self.child})17 18 def test_factory_dict(self):19 self.txd = taxidTools.Taxonomy({'0': self.parent, '1': self.child})20 self.assertEqual(len(self.txd.keys()), 2)21 22 def test_factory_add_node(self):23 self.txd = taxidTools.Taxonomy()24 self.txd.addNode(self.child)25 self.txd.addNode(self.parent)26 self.assertEqual(len(self.txd.keys()), 2)27 28 def test_factory_list(self):29 self.txd = taxidTools.Taxonomy.from_list([self.parent, self.child])30 self.assertEqual(len(self.txd.keys()), 2)31 32 def test_factory_taxdump(self):33 self.txd = taxidTools.Taxonomy.from_taxdump(nodes, rankedlineage)34 self.assertEqual(self.txd["9913"].parent.taxid, "9903")35 36 ancestry = taxidTools.Lineage(self.txd["9903"])37 self.assertEqual(len(ancestry), 29)38 self.assertEqual(ancestry[-1].taxid, "1")39 40 def test_IO_json(self):41 self.txd = taxidTools.Taxonomy.from_taxdump(nodes, rankedlineage)42 self.txd.write("test.json")43 self.reload = taxidTools.Taxonomy.from_json("test.json")44 45 ancestry = taxidTools.Lineage(self.reload["9903"])46 self.assertEqual(len(ancestry), 29)47 self.assertEqual(ancestry[-1].taxid, "1")48 49 self.txd.filterRanks(['genus', 'none'])50 self.txd.write("test2.json")51 test2 = taxidTools.load("test2.json")52 ancestry = taxidTools.Lineage(test2["9903"])53 self.assertIsInstance(ancestry[1], taxidTools.DummyNode)54 55 def test_getters(self):56 self.assertEqual(self.txd.getName(1), "child")57 self.assertEqual(self.txd.getRank(1), "child")58 self.assertEqual(self.txd.getParent(1).taxid, "0")59 60 def test_getAncestry(self):61 lin = self.txd.getAncestry(1)62 self.assertEqual(len(lin), 2)63 self.assertEqual(lin[0].taxid, "1")64 self.assertEqual(lin[1].taxid, "0")65 66 def test_ancestry_tests(self):67 self.assertTrue(self.txd.isAncestorOf(0,1))68 self.assertFalse(self.txd.isAncestorOf(1,0))69 self.assertFalse(self.txd.isAncestorOf(1,1))70 71 self.assertTrue(self.txd.isDescendantOf(1,0))72 self.assertFalse(self.txd.isDescendantOf(0,1))73 self.assertFalse(self.txd.isDescendantOf(1,1)) ...

Full Screen

Full Screen

_base.py

Source: _base.py Github

copy

Full Screen

...40 assert isinstance(obj, self.obj_class)41 self._assert_body(obj)42 dict_out = obj.to_dict()43 assert dict_out == self.dict_in44 def test_io_json(self):45 obj = self.obj_class.from_json(self.json_in)46 assert isinstance(obj, self.obj_class)47 self._assert_body(obj)48 json_out = obj.to_json(ensure_ascii=False)...

Full Screen

Full Screen

Blogs

Check out the latest blogs from LambdaTest on this topic:

Test strategy and how to communicate it

I routinely come across test strategy documents when working with customers. They are lengthy—100 pages or more—and packed with monotonous text that is routinely reused from one project to another. Yawn once more— the test halt and resume circumstances, the defect management procedure, entrance and exit criteria, unnecessary generic risks, and in fact, one often-used model replicates the requirements of textbook testing, from stress to systems integration.

How To Write End-To-End Tests Using Cypress App Actions

When I started writing tests with Cypress, I was always going to use the user interface to interact and change the application’s state when running tests.

Pair testing strategy in an Agile environment

Pair testing can help you complete your testing tasks faster and with higher quality. But who can do pair testing, and when should it be done? And what form of pair testing is best for your circumstance? Check out this blog for more information on how to conduct pair testing to optimize its benefits.

LIVE With Automation Testing For OTT Streaming Devices ????

People love to watch, read and interact with quality content — especially video content. Whether it is sports, news, TV shows, or videos captured on smartphones, people crave digital content. The emergence of OTT platforms has already shaped the way people consume content. Viewers can now enjoy their favorite shows whenever they want rather than at pre-set times. Thus, the OTT platform’s concept of viewing anything, anytime, anywhere has hit the right chord.

Different Ways To Style CSS Box Shadow Effects

Have you ever visited a website that only has plain text and images? Most probably, no. It’s because such websites do not exist now. But there was a time when websites only had plain text and images with almost no styling. For the longest time, websites did not focus on user experience. For instance, this is how eBay’s homepage looked in 1999.

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run pandera automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful