ot_btc_mainnet.py 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299
  1. #!/usr/bin/env python3
  2. #
  3. # mmgen = Multi-Mode GENerator, command-line Bitcoin cold storage solution
  4. # Copyright (C)2013-2020 The MMGen Project <mmgen@tuta.io>
  5. """
  6. test.objtest_py_d.ot_btc_mainnet: BTC mainnet test vectors for MMGen data objects
  7. """
  8. from mmgen.obj import *
  9. from mmgen.seed import *
  10. from .ot_common import *
  11. from mmgen.protocol import init_proto
  12. proto = init_proto('btc')
  13. tw_pfx = proto.base_coin.lower() + ':'
  14. ssm = str(SeedShareCount.max_val)
  15. tests = {
  16. 'Int': {
  17. 'bad': ('1L',0.0,'0.0','1.0',1.0,'s',1.1,'1.1'),
  18. 'good': (
  19. ('0',0),('-1',-1),('7',7),-1,0,1,9999999,
  20. {'n':'0x0','base':16,'ret':0},
  21. {'n':'0x1','base':16,'ret':1},
  22. {'n':'0xf','base':16,'ret':15},
  23. {'n':'0xff','base':16,'ret':255},
  24. )
  25. },
  26. 'AddrIdx': {
  27. 'bad': ('s',1.1,10000000,-1,0),
  28. 'good': (('7',7),(1,1),(9999999,9999999))
  29. },
  30. 'SeedShareIdx': {
  31. 'bad': ('s',1.1,1025,-1,0),
  32. 'good': (('7',7),(1,1),(1024,1024))
  33. },
  34. 'SeedShareCount': {
  35. 'bad': ('s',2.1,1025,-1,0,1),
  36. 'good': (('7',7),(2,2),(1024,1024))
  37. },
  38. 'MasterShareIdx': {
  39. 'bad': ('s',1.1,1025,-1,0),
  40. 'good': (('7',7),(1,1),(1024,1024))
  41. },
  42. 'AddrIdxList': {
  43. 'bad': ('x','5,9,1-2-3','8,-11','66,3-2'),
  44. 'good': (
  45. ('3,2,2',[2,3]),
  46. ('101,1,3,5,2-7,99',[1,2,3,4,5,6,7,99,101]),
  47. ({'idx_list':AddrIdxList('1-5')},[1,2,3,4,5])
  48. )
  49. },
  50. 'SubSeedIdxRange': {
  51. 'bad': (33,'x','-11','66,3','0','3-2','8000000','100000000',(1,2,3)),
  52. 'good': (
  53. ('3',(3,3)),
  54. ((3,5),(3,5)),
  55. ('1-2',(1,2)),
  56. (str(g.subseeds),(g.subseeds,g.subseeds)),
  57. (str(SubSeedIdxRange.max_idx),(SubSeedIdxRange.max_idx,SubSeedIdxRange.max_idx)),
  58. )
  59. },
  60. 'BTCAmt': {
  61. 'bad': ('-3.2','0.123456789',123,'123L','22000000',20999999.12345678,
  62. {'num':'1','from_decimal':True},
  63. {'num':1,'from_decimal':True},
  64. ),
  65. 'good': (('20999999.12345678',Decimal('20999999.12345678')),
  66. {'num':Decimal('1.23456789623456789'),'from_decimal':True,'ret':Decimal('1.23456790')}, # rounding
  67. {'num':Decimal('1.234'),'from_decimal':True,'ret':Decimal('1.234')},
  68. {'num':Decimal('0.0'),'from_decimal':True,'ret':Decimal('0')},
  69. # emulate network fee estimation:
  70. # BTC/kB tx_fee_adj tx size
  71. { 'num':Decimal('0.00053249') * Decimal('0.9') * 109 / 1024 , # ≈53 sat/byte
  72. 'from_decimal':True,
  73. 'ret':Decimal('0.00005101') },
  74. { 'num':Decimal('0.00003249') * Decimal('1.1') * 109 / 1024 , # ≈3 sat/byte
  75. 'from_decimal':True,
  76. 'ret':Decimal('0.00000380') },
  77. { 'num':Decimal('0.00011249') * Decimal('1.0') * 221 / 1024 , # ≈11 sat/byte
  78. 'from_decimal':True,
  79. 'ret':Decimal('0.00002428') },
  80. {'num':1234,'from_unit':'satoshi','ret':Decimal('0.00001234')},
  81. )
  82. },
  83. 'CoinAddr': {
  84. 'good': (
  85. {'addr':'1MjjELEy6EJwk8fSNfpS8b5teFRo4X5fZr', 'proto':proto},
  86. {'addr':'32GiSWo9zJQgkCmjAaLRrbPwXhKry2jHhj', 'proto':proto},
  87. ),
  88. 'bad': (
  89. {'addr':1, 'proto':proto},
  90. {'addr':'x', 'proto':proto},
  91. {'addr':'я', 'proto':proto},
  92. ),
  93. },
  94. 'SeedID': {
  95. 'bad': (
  96. {'sid':'я'},
  97. {'sid':'F00F00'},
  98. {'sid':'xF00F00x'},
  99. {'sid':1},
  100. {'sid':'F00BAA123'},
  101. {'sid':'f00baa12'},
  102. 'я',r32,'abc'
  103. ),
  104. 'good': (({'sid':'F00BAA12'},'F00BAA12'),(Seed(r16),Seed(r16).sid))
  105. },
  106. 'SubSeedIdx': {
  107. 'bad': (33,'x','я','1x',200,'1ss','L','s','200LS','30ll','s100',str(SubSeedIdxRange.max_idx+1),'0'),
  108. 'good': (('1','1L'),('1s','1S'),'20S','30L',('300l','300L'),('200','200L'),str(SubSeedIdxRange.max_idx)+'S')
  109. },
  110. 'MMGenID': {
  111. 'bad': (
  112. {'id_str':'x', 'proto':proto},
  113. {'id_str':1, 'proto':proto},
  114. {'id_str':'f00f00f', 'proto':proto},
  115. {'id_str':'a:b', 'proto':proto},
  116. {'id_str':'x:L:3', 'proto':proto},
  117. {'id_str':'F00BAA12', 'proto':proto},
  118. {'id_str':'F00BAA12:Z:99', 'proto':proto},
  119. ),
  120. 'good': (
  121. {'id_str':'F00BAA12:99', 'proto':proto, 'ret':'F00BAA12:L:99'},
  122. {'id_str':'F00BAA12:L:99', 'proto':proto},
  123. {'id_str':'F00BAA12:S:99', 'proto':proto},
  124. ),
  125. },
  126. 'TwMMGenID': {
  127. 'bad': (
  128. {'id_str':'x', 'proto':proto},
  129. {'id_str':'я', 'proto':proto},
  130. {'id_str':'я:я', 'proto':proto},
  131. {'id_str':1, 'proto':proto},
  132. {'id_str':'f00f00f', 'proto':proto},
  133. {'id_str':'a:b', 'proto':proto},
  134. {'id_str':'x:L:3', 'proto':proto},
  135. {'id_str':'F00BAA12:0', 'proto':proto},
  136. {'id_str':'F00BAA12:Z:99', 'proto':proto},
  137. {'id_str':tw_pfx, 'proto':proto},
  138. {'id_str':tw_pfx+'я', 'proto':proto},
  139. ),
  140. 'good': (
  141. {'id_str':tw_pfx+'x', 'proto':proto},
  142. {'id_str':'F00BAA12:99', 'proto':proto, 'ret':'F00BAA12:L:99'},
  143. {'id_str':'F00BAA12:L:99', 'proto':proto},
  144. {'id_str':'F00BAA12:S:9999999', 'proto':proto},
  145. ),
  146. },
  147. 'TwLabel': {
  148. 'bad': (
  149. {'text':'x x', 'proto':proto},
  150. {'text':'x я', 'proto':proto},
  151. {'text':'я:я', 'proto':proto},
  152. {'text':1, 'proto':proto},
  153. {'text':'f00f00f', 'proto':proto},
  154. {'text':'a:b', 'proto':proto},
  155. {'text':'x:L:3', 'proto':proto},
  156. {'text':'F00BAA12:0 x', 'proto':proto},
  157. {'text':'F00BAA12:Z:99', 'proto':proto},
  158. {'text':tw_pfx+' x', 'proto':proto},
  159. {'text':tw_pfx+'я x', 'proto':proto},
  160. {'text':utf8_ctrl[:40], 'proto':proto},
  161. {'text':'F00BAA12:S:1 '+ utf8_ctrl[:40], 'proto':proto, 'on_fail':'raise','ExcType':'BadTwComment'},
  162. ),
  163. 'good': (
  164. {'text':'F00BAA12:99 a comment', 'proto':proto, 'ret':'F00BAA12:L:99 a comment'},
  165. {'text':'F00BAA12:L:99 a comment', 'proto':proto},
  166. {'text': 'F00BAA12:L:99 comment (UTF-8) α', 'proto':proto},
  167. {'text':'F00BAA12:S:9999999 comment', 'proto':proto},
  168. {'text':tw_pfx+'x comment', 'proto':proto},
  169. ),
  170. },
  171. 'MMGenTxID': {
  172. 'bad': (1,[],'\0','\1','я','g','gg','FF','f00','F00F0012'),
  173. 'good': ('DEADBE','F00BAA')
  174. },
  175. 'CoinTxID':{
  176. 'bad': (1,[],'\0','\1','я','g','gg','FF','f00','F00F0012',r16.hex(),r32.hex()+'ee'),
  177. 'good': (r32.hex(),)
  178. },
  179. 'WifKey': {
  180. 'bad': (
  181. {'proto':proto, 'wif':1},
  182. {'proto':proto, 'wif':[]},
  183. {'proto':proto, 'wif':'\0'},
  184. {'proto':proto, 'wif':'\1'},
  185. {'proto':proto, 'wif':'я'},
  186. {'proto':proto, 'wif':'g'},
  187. {'proto':proto, 'wif':'gg'},
  188. {'proto':proto, 'wif':'FF'},
  189. {'proto':proto, 'wif':'f00'},
  190. {'proto':proto, 'wif':r16.hex()},
  191. {'proto':proto, 'wif':'2MspvWFjBbkv2wzQGqhxJUYPCk3Y2jMaxLN'},
  192. ),
  193. 'good': (
  194. {'proto':proto, 'wif':'5KXEpVzjWreTcQoG5hX357s1969MUKNLuSfcszF6yu84kpsNZKb', 'ret_idx':1},
  195. {'proto':proto, 'wif':'KwWr9rDh8KK5TtDa3HLChEvQXNYcUXpwhRFUPc5uSNnMtqNKLFhk', 'ret_idx':1},
  196. )
  197. },
  198. 'PubKey': {
  199. 'bad': ({'arg':1,'compressed':False},{'arg':'F00BAA12','compressed':False},),
  200. 'good': ({'arg':'deadbeef','compressed':True},) # TODO: add real pubkeys
  201. },
  202. 'PrivKey': {
  203. 'bad': (
  204. {'proto':proto, 'wif':1},
  205. {'proto':proto, 'wif':'1'},
  206. {'proto':proto, 'wif':'cMsqcmDYZP1LdKgqRh9L4ZRU9br28yvdmTPwW2YQwVSN9aQiMAoR'},
  207. {'proto':proto, 's':r32,'wif':'5KXEpVzjWreTcQoG5hX357s1969MUKNLuSfcszF6yu84kpsNZKb'},
  208. {'proto':proto, 'pubkey_type':'std'},
  209. {'proto':proto, 's':r32},
  210. {'proto':proto, 's':r32,'compressed':'yes'},
  211. {'proto':proto, 's':r32,'compressed':'yes','pubkey_type':'std'},
  212. {'proto':proto, 's':r32,'compressed':True,'pubkey_type':'nonstd'},
  213. {'proto':proto, 's':r32+b'x','compressed':True,'pubkey_type':'std'}
  214. ),
  215. 'good': (
  216. {'proto':proto, 'wif':'5KXEpVzjWreTcQoG5hX357s1969MUKNLuSfcszF6yu84kpsNZKb',
  217. 'ret':'e0aef965b905a2fedf907151df8e0a6bac832aa697801c51f58bd2ecb4fd381c'},
  218. {'proto':proto, 'wif':'KwWr9rDh8KK5TtDa3HLChEvQXNYcUXpwhRFUPc5uSNnMtqNKLFhk',
  219. 'ret':'08d0ed83b64b68d56fa064be48e2385060ed205be2b1e63cd56d218038c3a05f'},
  220. {'proto':proto, 's':r32,'compressed':False,'pubkey_type':'std','ret':r32.hex()},
  221. {'proto':proto, 's':r32,'compressed':True,'pubkey_type':'std','ret':r32.hex()}
  222. )
  223. },
  224. 'AddrListID': { # a rather pointless test, but do it anyway
  225. 'bad': (
  226. {'sid':SeedID(sid='F00BAA12'),'mmtype':'Z','ret':'F00BAA12:Z'},
  227. ),
  228. 'good': (
  229. {'sid':SeedID(sid='F00BAA12'),'mmtype':proto.addr_type(id_str='S'),'ret':'F00BAA12:S'},
  230. {'sid':SeedID(sid='F00BAA12'),'mmtype':proto.addr_type(id_str='L'),'ret':'F00BAA12:L'},
  231. )
  232. },
  233. 'MMGenWalletLabel': {
  234. 'bad': (utf8_text[:49],utf8_combining[:48],utf8_ctrl[:48],gr_uc_w_ctrl),
  235. 'good': (utf8_text[:48],)
  236. },
  237. 'TwComment': {
  238. 'bad': ( utf8_combining[:40],
  239. utf8_ctrl[:40],
  240. text_jp[:41],
  241. text_zh[:41],
  242. gr_uc_w_ctrl,
  243. utf8_text[:81] ),
  244. 'good': ( utf8_text[:80],
  245. (ru_uc + gr_uc + utf8_text)[:80],
  246. text_jp[:40],
  247. text_zh[:40] )
  248. },
  249. 'MMGenTxLabel':{
  250. 'bad': (utf8_text[:73],utf8_combining[:72],utf8_ctrl[:72],gr_uc_w_ctrl),
  251. 'good': (utf8_text[:72],)
  252. },
  253. 'MMGenPWIDString': { # forbidden = list(u' :/\\')
  254. 'bad': ('foo/','foo:','foo:\\'),
  255. 'good': ('qwerty@яяя',)
  256. },
  257. 'MMGenAddrType': {
  258. 'bad': (
  259. {'proto':proto, 'id_str':'U', 'ret':'L'},
  260. {'proto':proto, 'id_str':'z', 'ret':'L'},
  261. {'proto':proto, 'id_str':'xx', 'ret':'C'},
  262. {'proto':proto, 'id_str':'dogecoin', 'ret':'C'},
  263. ),
  264. 'good': (
  265. {'proto':proto, 'id_str':'legacy', 'ret':'L'},
  266. {'proto':proto, 'id_str':'L', 'ret':'L'},
  267. {'proto':proto, 'id_str':'compressed','ret':'C'},
  268. {'proto':proto, 'id_str':'C', 'ret':'C'},
  269. {'proto':proto, 'id_str':'segwit', 'ret':'S'},
  270. {'proto':proto, 'id_str':'S', 'ret':'S'},
  271. {'proto':proto, 'id_str':'bech32', 'ret':'B'},
  272. {'proto':proto, 'id_str':'B', 'ret':'B'}
  273. )
  274. },
  275. 'MMGenPasswordType': {
  276. 'bad': (
  277. {'proto':proto, 'id_str':'U', 'ret':'L'},
  278. {'proto':proto, 'id_str':'z', 'ret':'L'},
  279. {'proto':proto, 'id_str':'я', 'ret':'C'},
  280. {'proto':proto, 'id_str':1, 'ret':'C'},
  281. {'proto':proto, 'id_str':'passw0rd', 'ret':'C'},
  282. ),
  283. 'good': (
  284. {'proto':proto, 'id_str':'password', 'ret':'P'},
  285. {'proto':proto, 'id_str':'P', 'ret':'P'},
  286. )
  287. },
  288. 'SeedSplitSpecifier': {
  289. 'bad': ('M','αβ:2',1,'0:1','1:1','2:1','3:2','1:2000','abc:0:2'),
  290. 'good': (
  291. ('1:2','2:2','alice:2:2','αβ:2:2','1:'+ssm,ssm+':'+ssm)
  292. )
  293. },
  294. }