test_porcelain.py 100 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862
  1. # test_porcelain.py -- porcelain tests
  2. # Copyright (C) 2013 Jelmer Vernooij <jelmer@jelmer.uk>
  3. #
  4. # Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
  5. # General Public License as public by the Free Software Foundation; version 2.0
  6. # or (at your option) any later version. You can redistribute it and/or
  7. # modify it under the terms of either of these two licenses.
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. #
  15. # You should have received a copy of the licenses; if not, see
  16. # <http://www.gnu.org/licenses/> for a copy of the GNU General Public License
  17. # and <http://www.apache.org/licenses/LICENSE-2.0> for a copy of the Apache
  18. # License, Version 2.0.
  19. #
  20. """Tests for dulwich.porcelain."""
  21. from io import BytesIO, StringIO
  22. import os
  23. import platform
  24. import re
  25. import shutil
  26. import stat
  27. import subprocess
  28. import sys
  29. import tarfile
  30. import tempfile
  31. import time
  32. from unittest import skipIf
  33. from dulwich import porcelain
  34. from dulwich.diff_tree import tree_changes
  35. from dulwich.errors import (
  36. CommitError,
  37. )
  38. from dulwich.objects import (
  39. Blob,
  40. Tag,
  41. Tree,
  42. ZERO_SHA,
  43. )
  44. from dulwich.repo import (
  45. NoIndexPresent,
  46. Repo,
  47. )
  48. from dulwich.tests import (
  49. TestCase,
  50. )
  51. from dulwich.tests.utils import (
  52. build_commit_graph,
  53. make_commit,
  54. make_object,
  55. )
  56. def flat_walk_dir(dir_to_walk):
  57. for dirpath, _, filenames in os.walk(dir_to_walk):
  58. rel_dirpath = os.path.relpath(dirpath, dir_to_walk)
  59. if not dirpath == dir_to_walk:
  60. yield rel_dirpath
  61. for filename in filenames:
  62. if dirpath == dir_to_walk:
  63. yield filename
  64. else:
  65. yield os.path.join(rel_dirpath, filename)
  66. class PorcelainTestCase(TestCase):
  67. def setUp(self):
  68. super(PorcelainTestCase, self).setUp()
  69. self.test_dir = tempfile.mkdtemp()
  70. self.addCleanup(shutil.rmtree, self.test_dir)
  71. self.repo_path = os.path.join(self.test_dir, "repo")
  72. self.repo = Repo.init(self.repo_path, mkdir=True)
  73. self.addCleanup(self.repo.close)
  74. class PorcelainGpgTestCase(PorcelainTestCase):
  75. DEFAULT_KEY = """
  76. -----BEGIN PGP PRIVATE KEY BLOCK-----
  77. lQVYBGBjIyIBDADAwydvMPQqeEiK54FG1DHwT5sQejAaJOb+PsOhVa4fLcKsrO3F
  78. g5CxO+/9BHCXAr8xQAtp/gOhDN05fyK3MFyGlL9s+Cd8xf34S3R4rN/qbF0oZmaa
  79. FW0MuGnniq54HINs8KshadVn1Dhi/GYSJ588qNFRl/qxFTYAk+zaGsgX/QgFfy0f
  80. djWXJLypZXu9D6DlyJ0cPSzUlfBkI2Ytx6grzIquRjY0FbkjK3l+iGsQ+ebRMdcP
  81. Sqd5iTN9XuzIUVoBFAZBRjibKV3N2wxlnCbfLlzCyDp7rktzSThzjJ2pVDuLrMAx
  82. 6/L9hIhwmFwdtY4FBFGvMR0b0Ugh3kCsRWr8sgj9I7dUoLHid6ObYhJFhnD3GzRc
  83. U+xX1uy3iTCqJDsG334aQIhC5Giuxln4SUZna2MNbq65ksh38N1aM/t3+Dc/TKVB
  84. rb5KWicRPCQ4DIQkHMDCSPyj+dvRLCPzIaPvHD7IrCfHYHOWuvvPGCpwjo0As3iP
  85. IecoMeguPLVaqgcAEQEAAQAL/i5/pQaUd4G7LDydpbixPS6r9UrfPrU/y5zvBP/p
  86. DCynPDutJ1oq539pZvXQ2VwEJJy7x0UVKkjyMndJLNWly9wHC7o8jkHx/NalVP47
  87. LXR+GWbCdOOcYYbdAWcCNB3zOtzPnWhdAEagkc2G9xRQDIB0dLHLCIUpCbLP/CWM
  88. qlHnDsVMrVTWjgzcpsnyGgw8NeLYJtYGB8dsN+XgCCjo7a9LEvUBKNgdmWBbf14/
  89. iBw7PCugazFcH9QYfZwzhsi3nqRRagTXHbxFRG0LD9Ro9qCEutHYGP2PJ59Nj8+M
  90. zaVkJj/OxWxVOGvn2q16mQBCjKpbWfqXZVVl+G5DGOmiSTZqXy+3j6JCKdOMy6Qd
  91. JBHOHhFZXYmWYaaPzoc33T/C3QhMfY5sOtUDLJmV05Wi4dyBeNBEslYgUuTk/jXb
  92. 5ZAie25eDdrsoqkcnSs2ZguMF7AXhe6il2zVhUUMs/6UZgd6I7I4Is0HXT/pnxEp
  93. uiTRFu4v8E+u+5a8O3pffe5boQYA3TsIxceen20qY+kRaTOkURHMZLn/y6KLW8bZ
  94. rNJyXWS9hBAcbbSGhfOwYfzbDCM17yPQO3E2zo8lcGdRklUdIIaCxQwtu36N5dfx
  95. OLCCQc5LmYdl/EAm91iAhrr7dNntZ18MU09gdzUu+ONZwu4CP3cJT83+qYZULso8
  96. 4Fvd/X8IEfGZ7kM+ylrdqBwtlrn8yYXtom+ows2M2UuNR53B+BUOd73kVLTkTCjE
  97. JH63+nE8BqG7tDLCMws+23SAA3xxBgDfDrr0x7zCozQKVQEqBzQr9Uoo/c/ZjAfi
  98. syzNSrDz+g5gqJYtuL9XpPJVWf6V1GXVyJlSbxR9CjTkBxmlPxpvV25IsbVSsh0o
  99. aqkf2eWpbCL6Qb2E0jd1rvf8sGeTTohzYfiSVVsC2t9ngRO/CmetizwQBvRzLGMZ
  100. 4mtAPiy7ZEDc2dFrPp7zlKISYmJZUx/DJVuZWuOrVMpBP+bSgJXoMTlICxZUqUnE
  101. 2VKVStb/L+Tl8XCwIWdrZb9BaDnHqfcGAM2B4HNPxP88Yj1tEDly/vqeb3vVMhj+
  102. S1lunnLdgxp46YyuTMYAzj88eCGurRtzBsdxxlGAsioEnZGebEqAHQbieKq/DO6I
  103. MOMZHMSVBDqyyIx3assGlxSX8BSFW0lhKyT7i0XqnAgCJ9f/5oq0SbFGq+01VQb7
  104. jIx9PbcYJORxsE0JG/CXXPv27bRtQXsudkWGSYvC0NLOgk4z8+kQpQtyFh16lujq
  105. WRwMeriu0qNDjCa1/eHIKDovhAZ3GyO5/9m1tBlUZXN0IFVzZXIgPHRlc3RAdGVz
  106. dC5jb20+iQHOBBMBCAA4AhsDBQsJCAcCBhUKCQgLAgQWAgMBAh4BAheAFiEEjrR8
  107. MQ4fJK44PYMvfN2AClLmXiYFAmDcEZEACgkQfN2AClLmXibZzgv/ZfeTpTuqQE1W
  108. C1jT5KpQExnt0BizTX0U7BvSn8Fr6VXTyol6kYc3u71GLUuJyawCLtIzOXqOXJvz
  109. bjcZqymcMADuftKcfMy513FhbF6MhdVd6QoeBP6+7/xXOFJCi+QVYF7SQ2h7K1Qm
  110. +yXOiAMgSxhCZQGPBNJLlDUOd47nSIMANvlumFtmLY/1FD7RpG7WQWjeX1mnxNTw
  111. hUU+Yv7GuFc/JprXCIYqHbhWfvXyVtae2ZK4xuVi5eqwA2RfggOVM7drb+CgPhG0
  112. +9aEDDLOZqVi65wK7J73Puo3rFTbPQMljxw5s27rWqF+vB6hhVdJOPNomWy3naPi
  113. k5MW0mhsacASz1WYndpZz+XaQTq/wJF5HUyyeUWJ0vlOEdwx021PHcqSTyfNnkjD
  114. KncrE21t2sxWRsgGDETxIwkd2b2HNGAvveUD0ffFK/oJHGSXjAERFGc3wuiDj3mQ
  115. BvKm4wt4QF9ZMrCdhMAA6ax5kfEUqQR4ntmrJk/khp/mV7TILaI4nQVYBGBjIyIB
  116. DADghIo9wXnRxzfdDTvwnP8dHpLAIaPokgdpyLswqUCixJWiW2xcV6weUjEWwH6n
  117. eN/t1uZYVehbrotxVPla+MPvzhxp6/cmG+2lhzEBOp6zRwnL1wIB6HoKJfpREhyM
  118. c8rLR0zMso1L1bJTyydvnu07a7BWo3VWKjilb0rEZZUSD/2hidx5HxMOJSoidLWe
  119. d/PPuv6yht3NtA4UThlcfldm9G6PbqCdm1kMEKAkq0wVJvhPJ6gEFRNJimgygfUw
  120. MDFXEIhQtxjgdV5Uoz3O5452VLoRsDlgpi3E0WDGj7WXDaO5uSU0T5aJgVgHCP/f
  121. xZhHuQFk2YYIl5nCBpOZyWWI0IKmscTuEwzpkhICQDQFvcMZ5ibsl7wA2P7YTrQf
  122. FDMjjzuaK80GYPfxDFlyKUyLqFt8w/QzsZLDLX7+jxIEpbRAaMw/JsWqm5BMxxbS
  123. 3CIQiS5S3oSKDsNINelqWFfwvLhvlQra8gIxyNTlek25OdgG66BiiX+seH8A/ql+
  124. F+MAEQEAAQAL/1jrNSLjMt9pwo6qFKClVQZP2vf7+sH7v7LeHIDXr3EnYUnVYnOq
  125. B1FU5PspTp/+J9W25DB9CZLx7Gj8qeslFdiuLSOoIBB4RCToB3kAoeTH0DHqW/Gs
  126. hFTrmJkuDp9zpo/ek6SIXJx5rHAyR9KVw0fizQprH2f6PcgLbTWeM61dJuqowmg3
  127. 7eCOyIKv7VQvFqEhYokLD+JNmrvg+Htg0DXGvdjRjAwPf/NezEXpj67a6cHTp1/C
  128. hwp7pevG+3fTxaCJFesl5/TxxtnaBLE8m2uo/S6Hxgn9l0edonroe1QlTjEqGLy2
  129. 7qi2z5Rem+v6GWNDRgvAWur13v8FNdyduHlioG/NgRsU9mE2MYeFsfi3cfNpJQp/
  130. wC9PSCIXrb/45mkS8KyjZpCrIPB9RV/m0MREq01TPom7rstZc4A1pD0Ot7AtUYS3
  131. e95zLyEmeLziPJ9fV4fgPmEudDr1uItnmV0LOskKlpg5sc0hhdrwYoobfkKt2dx6
  132. DqfMlcM1ZkUbLQYA4jwfpFJG4HmYvjL2xCJxM0ycjvMbqFN+4UjgYWVlRfOrm1V4
  133. Op86FjbRbV6OOCNhznotAg7mul4xtzrrTkK8o3YLBeJseDgl4AWuzXtNa9hE0XpK
  134. 9gJoEHUuBOOsamVh2HpXESFyE5CclOV7JSh541TlZKfnqfZYCg4JSbp0UijkawCL
  135. 5bJJUiGGMD9rZUxIAKQO1DvUEzptS7Jl6S3y5sbIIhilp4KfYWbSk3PPu9CnZD5b
  136. LhEQp0elxnb/IL8PBgD+DpTeC8unkGKXUpbe9x0ISI6V1D6FmJq/FxNg7fMa3QCh
  137. fGiAyoTm80ZETynj+blRaDO3gY4lTLa3Opubof1EqK2QmwXmpyvXEZNYcQfQ2CCS
  138. GOWUCK8jEQamUPf1PWndZXJUmROI1WukhlL71V/ir6zQeVCv1wcwPwclJPnAe87u
  139. pEklnCYpvsEldwHUX9u0BWzoULIEsi+ddtHmT0KTeF/DHRy0W15jIHbjFqhqckj1
  140. /6fmr7l7kIi/kN4vWe0F/0Q8IXX+cVMgbl3aIuaGcvENLGcoAsAtPGx88SfRgmfu
  141. HK64Y7hx1m+Bo215rxJzZRjqHTBPp0BmCi+JKkaavIBrYRbsx20gveI4dzhLcUhB
  142. kiT4Q7oz0/VbGHS1CEf9KFeS/YOGj57s4yHauSVI0XdP9kBRTWmXvBkzsooB2cKH
  143. hwhUN7iiT1k717CiTNUT6Q/pcPFCyNuMoBBGQTU206JEgIjQvI3f8xMUMGmGVVQz
  144. 9/k716ycnhb2JZ/Q/AyQIeHJiQG2BBgBCAAgAhsMFiEEjrR8MQ4fJK44PYMvfN2A
  145. ClLmXiYFAmDcEa4ACgkQfN2AClLmXiZxxQv/XaMN0hPCygtrQMbCsTNb34JbvJzh
  146. hngPuUAfTbRHrR3YeATyQofNbL0DD3fvfzeFF8qESqvzCSZxS6dYsXPd4MCJTzlp
  147. zYBZ2X0sOrgDqZvqCZKN72RKgdk0KvthdzAxsIm2dfcQOxxowXMxhJEXZmsFpusx
  148. jKJxOcrfVRjXJnh9isY0NpCoqMQ+3k3wDJ3VGEHV7G+A+vFkWfbLJF5huQ96uaH9
  149. Uc+jUsREUH9G82ZBqpoioEN8Ith4VXpYnKdTMonK/+ZcyeraJZhXrvbjnEomKdzU
  150. 0pu4bt1HlLR3dcnpjN7b009MBf2xLgEfQk2nPZ4zzY+tDkxygtPllaB4dldFjBpT
  151. j7Q+t49sWMjmlJUbLlHfuJ7nUUK5+cGjBsWVObAEcyfemHWCTVFnEa2BJslGC08X
  152. rFcjRRcMEr9ct4551QFBHsv3O/Wp3/wqczYgE9itSnGT05w+4vLt4smG+dnEHjRJ
  153. brMb2upTHa+kjktjdO96/BgSnKYqmNmPB/qB
  154. =ivA/
  155. -----END PGP PRIVATE KEY BLOCK-----
  156. """
  157. DEFAULT_KEY_ID = "8EB47C310E1F24AE383D832F7CDD800A52E65E26"
  158. NON_DEFAULT_KEY = """
  159. -----BEGIN PGP PRIVATE KEY BLOCK-----
  160. lQVYBGBjI0ABDADGWBRp+t02emfzUlhrc1psqIhhecFm6Em0Kv33cfDpnfoMF1tK
  161. Yy/4eLYIR7FmpdbFPcDThFNHbXJzBi00L1mp0XQE2l50h/2bDAAgREdZ+NVo5a7/
  162. RSZjauNU1PxW6pnXMehEh1tyIQmV78jAukaakwaicrpIenMiFUN3fAKHnLuFffA6
  163. t0f3LqJvTDhUw/o2vPgw5e6UDQhA1C+KTv1KXVrhJNo88a3hZqCZ76z3drKR411Q
  164. zYgT4DUb8lfnbN+z2wfqT9oM5cegh2k86/mxAA3BYOeQrhmQo/7uhezcgbxtdGZr
  165. YlbuaNDTSBrn10ZoaxLPo2dJe2zWxgD6MpvsGU1w3tcRW508qo/+xoWp2/pDzmok
  166. +uhOh1NAj9zB05VWBz1r7oBgCOIKpkD/LD4VKq59etsZ/UnrYDwKdXWZp7uhshkU
  167. M7N35lUJcR76a852dlMdrgpmY18+BP7+o7M+5ElHTiqQbMuE1nHTg8RgVpdV+tUx
  168. dg6GWY/XHf5asm8AEQEAAQAL/A85epOp+GnymmEQfI3+5D178D//Lwu9n86vECB6
  169. xAHCqQtdjZnXpDp/1YUsL59P8nzgYRk7SoMskQDoQ/cB/XFuDOhEdMSgHaTVlnrj
  170. ktCCq6rqGnUosyolbb64vIfVaSqd/5SnCStpAsnaBoBYrAu4ZmV4xfjDQWwn0q5s
  171. u+r56mD0SkjPgbwk/b3qTVagVmf2OFzUgWwm1e/X+bA1oPag1NV8VS4hZPXswT4f
  172. qhiyqUFOgP6vUBcqehkjkIDIl/54xII7/P5tp3LIZawvIXqHKNTqYPCqaCqCj+SL
  173. vMYDIb6acjescfZoM71eAeHAANeFZzr/rwfBT+dEP6qKmPXNcvgE11X44ZCr04nT
  174. zOV/uDUifEvKT5qgtyJpSFEVr7EXubJPKoNNhoYqq9z1pYU7IedX5BloiVXKOKTY
  175. 0pk7JkLqf3g5fYtXh/wol1owemITJy5V5PgaqZvk491LkI6S+kWC7ANYUg+TDPIW
  176. afxW3E5N1CYV6XDAl0ZihbLcoQYAy0Ky/p/wayWKePyuPBLwx9O89GSONK2pQljZ
  177. yaAgxPQ5/i1vx6LIMg7k/722bXR9W3zOjWOin4eatPM3d2hkG96HFvnBqXSmXOPV
  178. 03Xqy1/B5Tj8E9naLKUHE/OBQEc363DgLLG9db5HfPlpAngeppYPdyWkhzXyzkgS
  179. PylaE5eW3zkdjEbYJ6RBTecTZEgBaMvJNPdWbn//frpP7kGvyiCg5Es+WjLInUZ6
  180. 0sdifcNTCewzLXK80v/y5mVOdJhPBgD5zs9cYdyiQJayqAuOr+He1eMHMVUbm9as
  181. qBmPrst398eBW9ZYF7eBfTSlUf6B+WnvyLKEGsUf/7IK0EWDlzoBuWzWiHjUAY1g
  182. m9eTV2MnvCCCefqCErWwfFo2nWOasAZA9sKD+ICIBY4tbtvSl4yfLBzTMwSvs9ZS
  183. K1ocPSYUnhm2miSWZ8RLZPH7roHQasNHpyq/AX7DahFf2S/bJ+46ZGZ8Pigr7hA+
  184. MjmpQ4qVdb5SaViPmZhAKO+PjuCHm+EF/2H0Y3Sl4eXgxZWoQVOUeXdWg9eMfYrj
  185. XDtUMIFppV/QxbeztZKvJdfk64vt/crvLsOp0hOky9cKwY89r4QaHfexU3qR+qDq
  186. UlMvR1rHk7dS5HZAtw0xKsFJNkuDxvBkMqv8Los8zp3nUl+U99dfZOArzNkW38wx
  187. FPa0ixkC9za2BkDrWEA8vTnxw0A2upIFegDUhwOByrSyfPPnG3tKGeqt3Izb/kDk
  188. Q9vmo+HgxBOguMIvlzbBfQZwtbd/gXzlvPqCtCJBbm90aGVyIFRlc3QgVXNlciA8
  189. dGVzdDJAdGVzdC5jb20+iQHOBBMBCAA4AhsDBQsJCAcCBhUKCQgLAgQWAgMBAh4B
  190. AheAFiEEapM5P1DF5qzT1vtFuTYhLttOFMAFAmDcEeEACgkQuTYhLttOFMDe0Qv/
  191. Qx/bzXztJ3BCc+CYAVDx7Kr37S68etwwLgcWzhG+CDeMB5F/QE+upKgxy2iaqQFR
  192. mxfOMgf/TIQkUfkbaASzK1LpnesYO85pk7XYjoN1bYEHiXTkeW+bgB6aJIxrRmO2
  193. SrWasdBC/DsI3Mrya8YMt/TiHC6VpRJVxCe5vv7/kZC4CXrgTBnZocXx/YXimbke
  194. poPMVdbvhYh6N0aGeS38jRKgyN10KXmhDTAQDwseVFavBWAjVfx3DEwjtK2Z2GbA
  195. aL8JvAwRtqiPFkDMIKPL4UwxtXFws8SpMt6juroUkNyf6+BxNWYqmwXHPy8zCJAb
  196. xkxIJMlEc+s7qQsP3fILOo8Xn+dVzJ5sa5AoARoXm1GMjsdqaKAzq99Dic/dHnaQ
  197. Civev1PQsdwlYW2C2wNXNeIrxMndbDMFfNuZ6BnGHWJ/wjcp/pFs4YkyyZN8JH7L
  198. hP2FO4Jgham3AuP13kC3Ivea7V6hR8QNcDZRwFPOMIX4tXwQv1T72+7DZGaA25O7
  199. nQVXBGBjI0ABDADJMBYIcG0Yil9YxFs7aYzNbd7alUAr89VbY8eIGPHP3INFPM1w
  200. lBQCu+4j6xdEbhMpppLBZ9A5TEylP4C6qLtPa+oLtPeuSw8gHDE10XE4lbgPs376
  201. rL60XdImSOHhiduACUefYjqpcmFH9Bim1CC+koArYrSQJQx1Jri+OpnTaL/8UID0
  202. KzD/kEgMVGlHIVj9oJmb4+j9pW8I/g0wDSnIaEKFMxqu6SIVJ1GWj+MUMvZigjLC
  203. sNCZd7PnbOC5VeU3SsXj6he74Jx0AmGMPWIHi9M0DjHO5d1cCbXTnud8xxM1bOh4
  204. 7aCTnMK5cVyIr+adihgJpVVhrndSM8aklBPRgtozrGNCgF2CkYU2P1blxfloNr/8
  205. UZpM83o+s1aObBszzRNLxnpNORqoLqjfPtLEPQnagxE+4EapCq0NZ/x6yO5VTwwp
  206. NljdFAEk40uGuKyn1QA3uNMHy5DlpLl+tU7t1KEovdZ+OVYsYKZhVzw0MTpKogk9
  207. JI7AN0q62ronPskAEQEAAQAL+O8BUSt1ZCVjPSIXIsrR+ZOSkszZwgJ1CWIoh0IH
  208. YD2vmcMHGIhFYgBdgerpvhptKhaw7GcXDScEnYkyh5s4GE2hxclik1tbj/x1gYCN
  209. 8BNoyeDdPFxQG73qN12D99QYEctpOsz9xPLIDwmL0j1ehAfhwqHIAPm9Ca+i8JYM
  210. x/F+35S/jnKDXRI+NVlwbiEyXKXxxIqNlpy9i8sDBGexO5H5Sg0zSN/B1duLekGD
  211. biDw6gLc6bCgnS+0JOUpU07Z2fccMOY9ncjKGD2uIb/ePPUaek92GCQyq0eorCIV
  212. brcQsRc5sSsNtnRKQTQtxioROeDg7kf2oWySeHTswlXW/219ihrSXgteHJd+rPm7
  213. DYLEeGLRny8bRKv8rQdAtApHaJE4dAATXeY4RYo4NlXHYaztGYtU6kiM/3zCfWAe
  214. 9Nn+Wh9jMTZrjefUCagS5r6ZqAh7veNo/vgIGaCLh0a1Ypa0Yk9KFrn3LYEM3zgk
  215. 3m3bn+7qgy5cUYXoJ3DGJJEhBgDPonpW0WElqLs5ZMem1ha85SC38F0IkAaSuzuz
  216. v3eORiKWuyJGF32Q2XHa1RHQs1JtUKd8rxFer3b8Oq71zLz6JtVc9dmRudvgcJYX
  217. 0PC11F6WGjZFSSp39dajFp0A5DKUs39F3w7J1yuDM56TDIN810ywufGAHARY1pZb
  218. UJAy/dTqjFnCbNjpAakor3hVzqxcmUG+7Y2X9c2AGncT1MqAQC3M8JZcuZvkK8A9
  219. cMk8B914ryYE7VsZMdMhyTwHmykGAPgNLLa3RDETeGeGCKWI+ZPOoU0ib5JtJZ1d
  220. P3tNwfZKuZBZXKW9gqYqyBa/qhMip84SP30pr/TvulcdAFC759HK8sQZyJ6Vw24P
  221. c+5ssRxrQUEw1rvJPWhmQCmCOZHBMQl5T6eaTOpR5u3aUKTMlxPKhK9eC1dCSTnI
  222. /nyL8An3VKnLy+K/LI42YGphBVLLJmBewuTVDIJviWRdntiG8dElyEJMOywUltk3
  223. 2CEmqgsD9tPO8rXZjnMrMn3gfsiaoQYA6/6/e2utkHr7gAoWBgrBBdqVHsvqh5Ro
  224. 2DjLAOpZItO/EdCJfDAmbTYOa04535sBDP2tcH/vipPOPpbr1Y9Y/mNsKCulNxed
  225. yqAmEkKOcerLUP5UHju0AB6VBjHJFdU2mqT+UjPyBk7WeKXgFomyoYMv3KpNOFWR
  226. xi0Xji4kKHbttA6Hy3UcGPr9acyUAlDYeKmxbSUYIPhw32bbGrX9+F5YriTufRsG
  227. 3jftQVo9zqdcQSD/5pUTMn3EYbEcohYB2YWJAbYEGAEIACACGwwWIQRqkzk/UMXm
  228. rNPW+0W5NiEu204UwAUCYNwR6wAKCRC5NiEu204UwOPnC/92PgB1c3h9FBXH1maz
  229. g29fndHIHH65VLgqMiQ7HAMojwRlT5Xnj5tdkCBmszRkv5vMvdJRa3ZY8Ed/Inqr
  230. hxBFNzpjqX4oj/RYIQLKXWWfkTKYVLJFZFPCSo00jesw2gieu3Ke/Yy4gwhtNodA
  231. v+s6QNMvffTW/K3XNrWDB0E7/LXbdidzhm+MBu8ov2tuC3tp9liLICiE1jv/2xT4
  232. CNSO6yphmk1/1zEYHS/mN9qJ2csBmte2cdmGyOcuVEHk3pyINNMDOamaURBJGRwF
  233. XB5V7gTKUFU4jCp3chywKrBHJHxGGDUmPBmZtDtfWAOgL32drK7/KUyzZL/WO7Fj
  234. akOI0hRDFOcqTYWL20H7+hAiX3oHMP7eou3L5C7wJ9+JMcACklN/WMjG9a536DFJ
  235. 4UgZ6HyKPP+wy837Hbe8b25kNMBwFgiaLR0lcgzxj7NyQWjVCMOEN+M55tRCjvL6
  236. ya6JVZCRbMXfdCy8lVPgtNQ6VlHaj8Wvnn2FLbWWO2n2r3s=
  237. =9zU5
  238. -----END PGP PRIVATE KEY BLOCK-----
  239. """
  240. NON_DEFAULT_KEY_ID = "6A93393F50C5E6ACD3D6FB45B936212EDB4E14C0"
  241. def setUp(self):
  242. super(PorcelainGpgTestCase, self).setUp()
  243. self.gpg_dir = os.path.join(self.test_dir, "gpg")
  244. os.mkdir(self.gpg_dir, mode=0o700)
  245. self.addCleanup(shutil.rmtree, self.gpg_dir)
  246. self._old_gnupghome = os.environ.get("GNUPGHOME")
  247. os.environ["GNUPGHOME"] = self.gpg_dir
  248. if self._old_gnupghome is None:
  249. self.addCleanup(os.environ.__delitem__, "GNUPGHOME")
  250. else:
  251. self.addCleanup(os.environ.__setitem__, "GNUPGHOME", self._old_gnupghome)
  252. def import_default_key(self):
  253. subprocess.run(
  254. ["gpg", "--import"],
  255. stdout=subprocess.DEVNULL,
  256. stderr=subprocess.DEVNULL,
  257. input=PorcelainGpgTestCase.DEFAULT_KEY,
  258. universal_newlines=True,
  259. )
  260. def import_non_default_key(self):
  261. subprocess.run(
  262. ["gpg", "--import"],
  263. stdout=subprocess.DEVNULL,
  264. stderr=subprocess.DEVNULL,
  265. input=PorcelainGpgTestCase.NON_DEFAULT_KEY,
  266. universal_newlines=True,
  267. )
  268. class ArchiveTests(PorcelainTestCase):
  269. """Tests for the archive command."""
  270. def test_simple(self):
  271. c1, c2, c3 = build_commit_graph(
  272. self.repo.object_store, [[1], [2, 1], [3, 1, 2]]
  273. )
  274. self.repo.refs[b"refs/heads/master"] = c3.id
  275. out = BytesIO()
  276. err = BytesIO()
  277. porcelain.archive(
  278. self.repo.path, b"refs/heads/master", outstream=out, errstream=err
  279. )
  280. self.assertEqual(b"", err.getvalue())
  281. tf = tarfile.TarFile(fileobj=out)
  282. self.addCleanup(tf.close)
  283. self.assertEqual([], tf.getnames())
  284. class UpdateServerInfoTests(PorcelainTestCase):
  285. def test_simple(self):
  286. c1, c2, c3 = build_commit_graph(
  287. self.repo.object_store, [[1], [2, 1], [3, 1, 2]]
  288. )
  289. self.repo.refs[b"refs/heads/foo"] = c3.id
  290. porcelain.update_server_info(self.repo.path)
  291. self.assertTrue(
  292. os.path.exists(os.path.join(self.repo.controldir(), "info", "refs"))
  293. )
  294. class CommitTests(PorcelainTestCase):
  295. def test_custom_author(self):
  296. c1, c2, c3 = build_commit_graph(
  297. self.repo.object_store, [[1], [2, 1], [3, 1, 2]]
  298. )
  299. self.repo.refs[b"refs/heads/foo"] = c3.id
  300. sha = porcelain.commit(
  301. self.repo.path,
  302. message=b"Some message",
  303. author=b"Joe <joe@example.com>",
  304. committer=b"Bob <bob@example.com>",
  305. )
  306. self.assertIsInstance(sha, bytes)
  307. self.assertEqual(len(sha), 40)
  308. def test_unicode(self):
  309. c1, c2, c3 = build_commit_graph(
  310. self.repo.object_store, [[1], [2, 1], [3, 1, 2]]
  311. )
  312. self.repo.refs[b"refs/heads/foo"] = c3.id
  313. sha = porcelain.commit(
  314. self.repo.path,
  315. message="Some message",
  316. author="Joe <joe@example.com>",
  317. committer="Bob <bob@example.com>",
  318. )
  319. self.assertIsInstance(sha, bytes)
  320. self.assertEqual(len(sha), 40)
  321. def test_no_verify(self):
  322. if os.name != "posix":
  323. self.skipTest("shell hook tests requires POSIX shell")
  324. self.assertTrue(os.path.exists("/bin/sh"))
  325. hooks_dir = os.path.join(self.repo.controldir(), "hooks")
  326. os.makedirs(hooks_dir, exist_ok=True)
  327. self.addCleanup(shutil.rmtree, hooks_dir)
  328. c1, c2, c3 = build_commit_graph(
  329. self.repo.object_store, [[1], [2, 1], [3, 1, 2]]
  330. )
  331. hook_fail = "#!/bin/sh\nexit 1"
  332. # hooks are executed in pre-commit, commit-msg order
  333. # test commit-msg failure first, then pre-commit failure, then
  334. # no_verify to skip both hooks
  335. commit_msg = os.path.join(hooks_dir, "commit-msg")
  336. with open(commit_msg, "w") as f:
  337. f.write(hook_fail)
  338. os.chmod(commit_msg, stat.S_IREAD | stat.S_IWRITE | stat.S_IEXEC)
  339. with self.assertRaises(CommitError):
  340. porcelain.commit(
  341. self.repo.path,
  342. message="Some message",
  343. author="Joe <joe@example.com>",
  344. committer="Bob <bob@example.com>",
  345. )
  346. pre_commit = os.path.join(hooks_dir, "pre-commit")
  347. with open(pre_commit, "w") as f:
  348. f.write(hook_fail)
  349. os.chmod(pre_commit, stat.S_IREAD | stat.S_IWRITE | stat.S_IEXEC)
  350. with self.assertRaises(CommitError):
  351. porcelain.commit(
  352. self.repo.path,
  353. message="Some message",
  354. author="Joe <joe@example.com>",
  355. committer="Bob <bob@example.com>",
  356. )
  357. sha = porcelain.commit(
  358. self.repo.path,
  359. message="Some message",
  360. author="Joe <joe@example.com>",
  361. committer="Bob <bob@example.com>",
  362. no_verify=True,
  363. )
  364. self.assertIsInstance(sha, bytes)
  365. self.assertEqual(len(sha), 40)
  366. class CleanTests(PorcelainTestCase):
  367. def put_files(self, tracked, ignored, untracked, empty_dirs):
  368. """Put the described files in the wd"""
  369. all_files = tracked | ignored | untracked
  370. for file_path in all_files:
  371. abs_path = os.path.join(self.repo.path, file_path)
  372. # File may need to be written in a dir that doesn't exist yet, so
  373. # create the parent dir(s) as necessary
  374. parent_dir = os.path.dirname(abs_path)
  375. try:
  376. os.makedirs(parent_dir)
  377. except FileExistsError:
  378. pass
  379. with open(abs_path, "w") as f:
  380. f.write("")
  381. with open(os.path.join(self.repo.path, ".gitignore"), "w") as f:
  382. f.writelines(ignored)
  383. for dir_path in empty_dirs:
  384. os.mkdir(os.path.join(self.repo.path, "empty_dir"))
  385. files_to_add = [os.path.join(self.repo.path, t) for t in tracked]
  386. porcelain.add(repo=self.repo.path, paths=files_to_add)
  387. porcelain.commit(repo=self.repo.path, message="init commit")
  388. def assert_wd(self, expected_paths):
  389. """Assert paths of files and dirs in wd are same as expected_paths"""
  390. control_dir_rel = os.path.relpath(self.repo._controldir, self.repo.path)
  391. # normalize paths to simplify comparison across platforms
  392. found_paths = {
  393. os.path.normpath(p)
  394. for p in flat_walk_dir(self.repo.path)
  395. if not p.split(os.sep)[0] == control_dir_rel
  396. }
  397. norm_expected_paths = {os.path.normpath(p) for p in expected_paths}
  398. self.assertEqual(found_paths, norm_expected_paths)
  399. def test_from_root(self):
  400. self.put_files(
  401. tracked={"tracked_file", "tracked_dir/tracked_file", ".gitignore"},
  402. ignored={"ignored_file"},
  403. untracked={
  404. "untracked_file",
  405. "tracked_dir/untracked_dir/untracked_file",
  406. "untracked_dir/untracked_dir/untracked_file",
  407. },
  408. empty_dirs={"empty_dir"},
  409. )
  410. porcelain.clean(repo=self.repo.path, target_dir=self.repo.path)
  411. self.assert_wd(
  412. {
  413. "tracked_file",
  414. "tracked_dir/tracked_file",
  415. ".gitignore",
  416. "ignored_file",
  417. "tracked_dir",
  418. }
  419. )
  420. def test_from_subdir(self):
  421. self.put_files(
  422. tracked={"tracked_file", "tracked_dir/tracked_file", ".gitignore"},
  423. ignored={"ignored_file"},
  424. untracked={
  425. "untracked_file",
  426. "tracked_dir/untracked_dir/untracked_file",
  427. "untracked_dir/untracked_dir/untracked_file",
  428. },
  429. empty_dirs={"empty_dir"},
  430. )
  431. porcelain.clean(
  432. repo=self.repo,
  433. target_dir=os.path.join(self.repo.path, "untracked_dir"),
  434. )
  435. self.assert_wd(
  436. {
  437. "tracked_file",
  438. "tracked_dir/tracked_file",
  439. ".gitignore",
  440. "ignored_file",
  441. "untracked_file",
  442. "tracked_dir/untracked_dir/untracked_file",
  443. "empty_dir",
  444. "untracked_dir",
  445. "tracked_dir",
  446. "tracked_dir/untracked_dir",
  447. }
  448. )
  449. class CloneTests(PorcelainTestCase):
  450. def test_simple_local(self):
  451. f1_1 = make_object(Blob, data=b"f1")
  452. commit_spec = [[1], [2, 1], [3, 1, 2]]
  453. trees = {
  454. 1: [(b"f1", f1_1), (b"f2", f1_1)],
  455. 2: [(b"f1", f1_1), (b"f2", f1_1)],
  456. 3: [(b"f1", f1_1), (b"f2", f1_1)],
  457. }
  458. c1, c2, c3 = build_commit_graph(self.repo.object_store, commit_spec, trees)
  459. self.repo.refs[b"refs/heads/master"] = c3.id
  460. self.repo.refs[b"refs/tags/foo"] = c3.id
  461. target_path = tempfile.mkdtemp()
  462. errstream = BytesIO()
  463. self.addCleanup(shutil.rmtree, target_path)
  464. r = porcelain.clone(
  465. self.repo.path, target_path, checkout=False, errstream=errstream
  466. )
  467. self.addCleanup(r.close)
  468. self.assertEqual(r.path, target_path)
  469. target_repo = Repo(target_path)
  470. self.assertEqual(0, len(target_repo.open_index()))
  471. self.assertEqual(c3.id, target_repo.refs[b"refs/tags/foo"])
  472. self.assertNotIn(b"f1", os.listdir(target_path))
  473. self.assertNotIn(b"f2", os.listdir(target_path))
  474. c = r.get_config()
  475. encoded_path = self.repo.path
  476. if not isinstance(encoded_path, bytes):
  477. encoded_path = encoded_path.encode("utf-8")
  478. self.assertEqual(encoded_path, c.get((b"remote", b"origin"), b"url"))
  479. self.assertEqual(
  480. b"+refs/heads/*:refs/remotes/origin/*",
  481. c.get((b"remote", b"origin"), b"fetch"),
  482. )
  483. def test_simple_local_with_checkout(self):
  484. f1_1 = make_object(Blob, data=b"f1")
  485. commit_spec = [[1], [2, 1], [3, 1, 2]]
  486. trees = {
  487. 1: [(b"f1", f1_1), (b"f2", f1_1)],
  488. 2: [(b"f1", f1_1), (b"f2", f1_1)],
  489. 3: [(b"f1", f1_1), (b"f2", f1_1)],
  490. }
  491. c1, c2, c3 = build_commit_graph(self.repo.object_store, commit_spec, trees)
  492. self.repo.refs[b"refs/heads/master"] = c3.id
  493. target_path = tempfile.mkdtemp()
  494. errstream = BytesIO()
  495. self.addCleanup(shutil.rmtree, target_path)
  496. with porcelain.clone(
  497. self.repo.path, target_path, checkout=True, errstream=errstream
  498. ) as r:
  499. self.assertEqual(r.path, target_path)
  500. with Repo(target_path) as r:
  501. self.assertEqual(r.head(), c3.id)
  502. self.assertIn("f1", os.listdir(target_path))
  503. self.assertIn("f2", os.listdir(target_path))
  504. def test_bare_local_with_checkout(self):
  505. f1_1 = make_object(Blob, data=b"f1")
  506. commit_spec = [[1], [2, 1], [3, 1, 2]]
  507. trees = {
  508. 1: [(b"f1", f1_1), (b"f2", f1_1)],
  509. 2: [(b"f1", f1_1), (b"f2", f1_1)],
  510. 3: [(b"f1", f1_1), (b"f2", f1_1)],
  511. }
  512. c1, c2, c3 = build_commit_graph(self.repo.object_store, commit_spec, trees)
  513. self.repo.refs[b"refs/heads/master"] = c3.id
  514. target_path = tempfile.mkdtemp()
  515. errstream = BytesIO()
  516. self.addCleanup(shutil.rmtree, target_path)
  517. with porcelain.clone(
  518. self.repo.path, target_path, bare=True, errstream=errstream
  519. ) as r:
  520. self.assertEqual(r.path, target_path)
  521. with Repo(target_path) as r:
  522. r.head()
  523. self.assertRaises(NoIndexPresent, r.open_index)
  524. self.assertNotIn(b"f1", os.listdir(target_path))
  525. self.assertNotIn(b"f2", os.listdir(target_path))
  526. def test_no_checkout_with_bare(self):
  527. f1_1 = make_object(Blob, data=b"f1")
  528. commit_spec = [[1]]
  529. trees = {1: [(b"f1", f1_1), (b"f2", f1_1)]}
  530. (c1,) = build_commit_graph(self.repo.object_store, commit_spec, trees)
  531. self.repo.refs[b"refs/heads/master"] = c1.id
  532. self.repo.refs[b"HEAD"] = c1.id
  533. target_path = tempfile.mkdtemp()
  534. errstream = BytesIO()
  535. self.addCleanup(shutil.rmtree, target_path)
  536. self.assertRaises(
  537. porcelain.Error,
  538. porcelain.clone,
  539. self.repo.path,
  540. target_path,
  541. checkout=True,
  542. bare=True,
  543. errstream=errstream,
  544. )
  545. def test_no_head_no_checkout(self):
  546. f1_1 = make_object(Blob, data=b"f1")
  547. commit_spec = [[1]]
  548. trees = {1: [(b"f1", f1_1), (b"f2", f1_1)]}
  549. (c1,) = build_commit_graph(self.repo.object_store, commit_spec, trees)
  550. self.repo.refs[b"refs/heads/master"] = c1.id
  551. target_path = tempfile.mkdtemp()
  552. self.addCleanup(shutil.rmtree, target_path)
  553. errstream = BytesIO()
  554. r = porcelain.clone(
  555. self.repo.path, target_path, checkout=True, errstream=errstream
  556. )
  557. r.close()
  558. def test_no_head_no_checkout_outstream_errstream_autofallback(self):
  559. f1_1 = make_object(Blob, data=b"f1")
  560. commit_spec = [[1]]
  561. trees = {1: [(b"f1", f1_1), (b"f2", f1_1)]}
  562. (c1,) = build_commit_graph(self.repo.object_store, commit_spec, trees)
  563. self.repo.refs[b"refs/heads/master"] = c1.id
  564. target_path = tempfile.mkdtemp()
  565. self.addCleanup(shutil.rmtree, target_path)
  566. errstream = porcelain.NoneStream()
  567. r = porcelain.clone(
  568. self.repo.path, target_path, checkout=True, errstream=errstream
  569. )
  570. r.close()
  571. def test_source_broken(self):
  572. with tempfile.TemporaryDirectory() as parent:
  573. target_path = os.path.join(parent, "target")
  574. self.assertRaises(
  575. Exception, porcelain.clone, "/nonexistant/repo", target_path
  576. )
  577. self.assertFalse(os.path.exists(target_path))
  578. def test_fetch_symref(self):
  579. f1_1 = make_object(Blob, data=b"f1")
  580. trees = {1: [(b"f1", f1_1), (b"f2", f1_1)]}
  581. [c1] = build_commit_graph(self.repo.object_store, [[1]], trees)
  582. self.repo.refs.set_symbolic_ref(b"HEAD", b"refs/heads/else")
  583. self.repo.refs[b"refs/heads/else"] = c1.id
  584. target_path = tempfile.mkdtemp()
  585. errstream = BytesIO()
  586. self.addCleanup(shutil.rmtree, target_path)
  587. r = porcelain.clone(
  588. self.repo.path, target_path, checkout=False, errstream=errstream
  589. )
  590. self.addCleanup(r.close)
  591. self.assertEqual(r.path, target_path)
  592. target_repo = Repo(target_path)
  593. self.assertEqual(0, len(target_repo.open_index()))
  594. self.assertEqual(c1.id, target_repo.refs[b"refs/heads/else"])
  595. self.assertEqual(c1.id, target_repo.refs[b"HEAD"])
  596. self.assertEqual(
  597. {b"HEAD": b"refs/heads/else", b"refs/remotes/origin/HEAD": b"refs/remotes/origin/else"},
  598. target_repo.refs.get_symrefs(),
  599. )
  600. class InitTests(TestCase):
  601. def test_non_bare(self):
  602. repo_dir = tempfile.mkdtemp()
  603. self.addCleanup(shutil.rmtree, repo_dir)
  604. porcelain.init(repo_dir)
  605. def test_bare(self):
  606. repo_dir = tempfile.mkdtemp()
  607. self.addCleanup(shutil.rmtree, repo_dir)
  608. porcelain.init(repo_dir, bare=True)
  609. class AddTests(PorcelainTestCase):
  610. def test_add_default_paths(self):
  611. # create a file for initial commit
  612. fullpath = os.path.join(self.repo.path, "blah")
  613. with open(fullpath, "w") as f:
  614. f.write("\n")
  615. porcelain.add(repo=self.repo.path, paths=[fullpath])
  616. porcelain.commit(
  617. repo=self.repo.path,
  618. message=b"test",
  619. author=b"test <email>",
  620. committer=b"test <email>",
  621. )
  622. # Add a second test file and a file in a directory
  623. with open(os.path.join(self.repo.path, "foo"), "w") as f:
  624. f.write("\n")
  625. os.mkdir(os.path.join(self.repo.path, "adir"))
  626. with open(os.path.join(self.repo.path, "adir", "afile"), "w") as f:
  627. f.write("\n")
  628. cwd = os.getcwd()
  629. try:
  630. os.chdir(self.repo.path)
  631. self.assertEqual(set(["foo", "blah", "adir", ".git"]), set(os.listdir(".")))
  632. self.assertEqual(
  633. (["foo", os.path.join("adir", "afile")], set()),
  634. porcelain.add(self.repo.path),
  635. )
  636. finally:
  637. os.chdir(cwd)
  638. # Check that foo was added and nothing in .git was modified
  639. index = self.repo.open_index()
  640. self.assertEqual(sorted(index), [b"adir/afile", b"blah", b"foo"])
  641. def test_add_default_paths_subdir(self):
  642. os.mkdir(os.path.join(self.repo.path, "foo"))
  643. with open(os.path.join(self.repo.path, "blah"), "w") as f:
  644. f.write("\n")
  645. with open(os.path.join(self.repo.path, "foo", "blie"), "w") as f:
  646. f.write("\n")
  647. cwd = os.getcwd()
  648. try:
  649. os.chdir(os.path.join(self.repo.path, "foo"))
  650. porcelain.add(repo=self.repo.path)
  651. porcelain.commit(
  652. repo=self.repo.path,
  653. message=b"test",
  654. author=b"test <email>",
  655. committer=b"test <email>",
  656. )
  657. finally:
  658. os.chdir(cwd)
  659. index = self.repo.open_index()
  660. self.assertEqual(sorted(index), [b"foo/blie"])
  661. def test_add_file(self):
  662. fullpath = os.path.join(self.repo.path, "foo")
  663. with open(fullpath, "w") as f:
  664. f.write("BAR")
  665. porcelain.add(self.repo.path, paths=[fullpath])
  666. self.assertIn(b"foo", self.repo.open_index())
  667. def test_add_ignored(self):
  668. with open(os.path.join(self.repo.path, ".gitignore"), "w") as f:
  669. f.write("foo\nsubdir/")
  670. with open(os.path.join(self.repo.path, "foo"), "w") as f:
  671. f.write("BAR")
  672. with open(os.path.join(self.repo.path, "bar"), "w") as f:
  673. f.write("BAR")
  674. os.mkdir(os.path.join(self.repo.path, "subdir"))
  675. with open(os.path.join(self.repo.path, "subdir", "baz"), "w") as f:
  676. f.write("BAZ")
  677. (added, ignored) = porcelain.add(
  678. self.repo.path,
  679. paths=[
  680. os.path.join(self.repo.path, "foo"),
  681. os.path.join(self.repo.path, "bar"),
  682. os.path.join(self.repo.path, "subdir"),
  683. ],
  684. )
  685. self.assertIn(b"bar", self.repo.open_index())
  686. self.assertEqual(set(["bar"]), set(added))
  687. self.assertEqual(set(["foo", os.path.join("subdir", "")]), ignored)
  688. def test_add_file_absolute_path(self):
  689. # Absolute paths are (not yet) supported
  690. with open(os.path.join(self.repo.path, "foo"), "w") as f:
  691. f.write("BAR")
  692. porcelain.add(self.repo, paths=[os.path.join(self.repo.path, "foo")])
  693. self.assertIn(b"foo", self.repo.open_index())
  694. def test_add_not_in_repo(self):
  695. with open(os.path.join(self.test_dir, "foo"), "w") as f:
  696. f.write("BAR")
  697. self.assertRaises(
  698. ValueError,
  699. porcelain.add,
  700. self.repo,
  701. paths=[os.path.join(self.test_dir, "foo")],
  702. )
  703. self.assertRaises(
  704. (ValueError, FileNotFoundError),
  705. porcelain.add,
  706. self.repo,
  707. paths=["../foo"],
  708. )
  709. self.assertEqual([], list(self.repo.open_index()))
  710. def test_add_file_clrf_conversion(self):
  711. # Set the right configuration to the repo
  712. c = self.repo.get_config()
  713. c.set("core", "autocrlf", "input")
  714. c.write_to_path()
  715. # Add a file with CRLF line-ending
  716. fullpath = os.path.join(self.repo.path, "foo")
  717. with open(fullpath, "wb") as f:
  718. f.write(b"line1\r\nline2")
  719. porcelain.add(self.repo.path, paths=[fullpath])
  720. # The line-endings should have been converted to LF
  721. index = self.repo.open_index()
  722. self.assertIn(b"foo", index)
  723. entry = index[b"foo"]
  724. blob = self.repo[entry.sha]
  725. self.assertEqual(blob.data, b"line1\nline2")
  726. class RemoveTests(PorcelainTestCase):
  727. def test_remove_file(self):
  728. fullpath = os.path.join(self.repo.path, "foo")
  729. with open(fullpath, "w") as f:
  730. f.write("BAR")
  731. porcelain.add(self.repo.path, paths=[fullpath])
  732. porcelain.commit(
  733. repo=self.repo,
  734. message=b"test",
  735. author=b"test <email>",
  736. committer=b"test <email>",
  737. )
  738. self.assertTrue(os.path.exists(os.path.join(self.repo.path, "foo")))
  739. cwd = os.getcwd()
  740. try:
  741. os.chdir(self.repo.path)
  742. porcelain.remove(self.repo.path, paths=["foo"])
  743. finally:
  744. os.chdir(cwd)
  745. self.assertFalse(os.path.exists(os.path.join(self.repo.path, "foo")))
  746. def test_remove_file_staged(self):
  747. fullpath = os.path.join(self.repo.path, "foo")
  748. with open(fullpath, "w") as f:
  749. f.write("BAR")
  750. cwd = os.getcwd()
  751. try:
  752. os.chdir(self.repo.path)
  753. porcelain.add(self.repo.path, paths=[fullpath])
  754. self.assertRaises(Exception, porcelain.rm, self.repo.path, paths=["foo"])
  755. finally:
  756. os.chdir(cwd)
  757. def test_remove_file_removed_on_disk(self):
  758. fullpath = os.path.join(self.repo.path, "foo")
  759. with open(fullpath, "w") as f:
  760. f.write("BAR")
  761. porcelain.add(self.repo.path, paths=[fullpath])
  762. cwd = os.getcwd()
  763. try:
  764. os.chdir(self.repo.path)
  765. os.remove(fullpath)
  766. porcelain.remove(self.repo.path, paths=["foo"])
  767. finally:
  768. os.chdir(cwd)
  769. self.assertFalse(os.path.exists(os.path.join(self.repo.path, "foo")))
  770. class LogTests(PorcelainTestCase):
  771. def test_simple(self):
  772. c1, c2, c3 = build_commit_graph(
  773. self.repo.object_store, [[1], [2, 1], [3, 1, 2]]
  774. )
  775. self.repo.refs[b"HEAD"] = c3.id
  776. outstream = StringIO()
  777. porcelain.log(self.repo.path, outstream=outstream)
  778. self.assertEqual(3, outstream.getvalue().count("-" * 50))
  779. def test_max_entries(self):
  780. c1, c2, c3 = build_commit_graph(
  781. self.repo.object_store, [[1], [2, 1], [3, 1, 2]]
  782. )
  783. self.repo.refs[b"HEAD"] = c3.id
  784. outstream = StringIO()
  785. porcelain.log(self.repo.path, outstream=outstream, max_entries=1)
  786. self.assertEqual(1, outstream.getvalue().count("-" * 50))
  787. class ShowTests(PorcelainTestCase):
  788. def test_nolist(self):
  789. c1, c2, c3 = build_commit_graph(
  790. self.repo.object_store, [[1], [2, 1], [3, 1, 2]]
  791. )
  792. self.repo.refs[b"HEAD"] = c3.id
  793. outstream = StringIO()
  794. porcelain.show(self.repo.path, objects=c3.id, outstream=outstream)
  795. self.assertTrue(outstream.getvalue().startswith("-" * 50))
  796. def test_simple(self):
  797. c1, c2, c3 = build_commit_graph(
  798. self.repo.object_store, [[1], [2, 1], [3, 1, 2]]
  799. )
  800. self.repo.refs[b"HEAD"] = c3.id
  801. outstream = StringIO()
  802. porcelain.show(self.repo.path, objects=[c3.id], outstream=outstream)
  803. self.assertTrue(outstream.getvalue().startswith("-" * 50))
  804. def test_blob(self):
  805. b = Blob.from_string(b"The Foo\n")
  806. self.repo.object_store.add_object(b)
  807. outstream = StringIO()
  808. porcelain.show(self.repo.path, objects=[b.id], outstream=outstream)
  809. self.assertEqual(outstream.getvalue(), "The Foo\n")
  810. def test_commit_no_parent(self):
  811. a = Blob.from_string(b"The Foo\n")
  812. ta = Tree()
  813. ta.add(b"somename", 0o100644, a.id)
  814. ca = make_commit(tree=ta.id)
  815. self.repo.object_store.add_objects([(a, None), (ta, None), (ca, None)])
  816. outstream = StringIO()
  817. porcelain.show(self.repo.path, objects=[ca.id], outstream=outstream)
  818. self.assertMultiLineEqual(
  819. outstream.getvalue(),
  820. """\
  821. --------------------------------------------------
  822. commit: 344da06c1bb85901270b3e8875c988a027ec087d
  823. Author: Test Author <test@nodomain.com>
  824. Committer: Test Committer <test@nodomain.com>
  825. Date: Fri Jan 01 2010 00:00:00 +0000
  826. Test message.
  827. diff --git a/somename b/somename
  828. new file mode 100644
  829. index 0000000..ea5c7bf
  830. --- /dev/null
  831. +++ b/somename
  832. @@ -0,0 +1 @@
  833. +The Foo
  834. """,
  835. )
  836. def test_tag(self):
  837. a = Blob.from_string(b"The Foo\n")
  838. ta = Tree()
  839. ta.add(b"somename", 0o100644, a.id)
  840. ca = make_commit(tree=ta.id)
  841. self.repo.object_store.add_objects([(a, None), (ta, None), (ca, None)])
  842. porcelain.tag_create(
  843. self.repo.path,
  844. b"tryme",
  845. b"foo <foo@bar.com>",
  846. b"bar",
  847. annotated=True,
  848. objectish=ca.id,
  849. tag_time=1552854211,
  850. tag_timezone=0,
  851. )
  852. outstream = StringIO()
  853. porcelain.show(self.repo, objects=[b"refs/tags/tryme"], outstream=outstream)
  854. self.maxDiff = None
  855. self.assertMultiLineEqual(
  856. outstream.getvalue(),
  857. """\
  858. Tagger: foo <foo@bar.com>
  859. Date: Sun Mar 17 2019 20:23:31 +0000
  860. bar
  861. --------------------------------------------------
  862. commit: 344da06c1bb85901270b3e8875c988a027ec087d
  863. Author: Test Author <test@nodomain.com>
  864. Committer: Test Committer <test@nodomain.com>
  865. Date: Fri Jan 01 2010 00:00:00 +0000
  866. Test message.
  867. diff --git a/somename b/somename
  868. new file mode 100644
  869. index 0000000..ea5c7bf
  870. --- /dev/null
  871. +++ b/somename
  872. @@ -0,0 +1 @@
  873. +The Foo
  874. """,
  875. )
  876. def test_commit_with_change(self):
  877. a = Blob.from_string(b"The Foo\n")
  878. ta = Tree()
  879. ta.add(b"somename", 0o100644, a.id)
  880. ca = make_commit(tree=ta.id)
  881. b = Blob.from_string(b"The Bar\n")
  882. tb = Tree()
  883. tb.add(b"somename", 0o100644, b.id)
  884. cb = make_commit(tree=tb.id, parents=[ca.id])
  885. self.repo.object_store.add_objects(
  886. [
  887. (a, None),
  888. (b, None),
  889. (ta, None),
  890. (tb, None),
  891. (ca, None),
  892. (cb, None),
  893. ]
  894. )
  895. outstream = StringIO()
  896. porcelain.show(self.repo.path, objects=[cb.id], outstream=outstream)
  897. self.assertMultiLineEqual(
  898. outstream.getvalue(),
  899. """\
  900. --------------------------------------------------
  901. commit: 2c6b6c9cb72c130956657e1fdae58e5b103744fa
  902. Author: Test Author <test@nodomain.com>
  903. Committer: Test Committer <test@nodomain.com>
  904. Date: Fri Jan 01 2010 00:00:00 +0000
  905. Test message.
  906. diff --git a/somename b/somename
  907. index ea5c7bf..fd38bcb 100644
  908. --- a/somename
  909. +++ b/somename
  910. @@ -1 +1 @@
  911. -The Foo
  912. +The Bar
  913. """,
  914. )
  915. class SymbolicRefTests(PorcelainTestCase):
  916. def test_set_wrong_symbolic_ref(self):
  917. c1, c2, c3 = build_commit_graph(
  918. self.repo.object_store, [[1], [2, 1], [3, 1, 2]]
  919. )
  920. self.repo.refs[b"HEAD"] = c3.id
  921. self.assertRaises(
  922. porcelain.Error, porcelain.symbolic_ref, self.repo.path, b"foobar"
  923. )
  924. def test_set_force_wrong_symbolic_ref(self):
  925. c1, c2, c3 = build_commit_graph(
  926. self.repo.object_store, [[1], [2, 1], [3, 1, 2]]
  927. )
  928. self.repo.refs[b"HEAD"] = c3.id
  929. porcelain.symbolic_ref(self.repo.path, b"force_foobar", force=True)
  930. # test if we actually changed the file
  931. with self.repo.get_named_file("HEAD") as f:
  932. new_ref = f.read()
  933. self.assertEqual(new_ref, b"ref: refs/heads/force_foobar\n")
  934. def test_set_symbolic_ref(self):
  935. c1, c2, c3 = build_commit_graph(
  936. self.repo.object_store, [[1], [2, 1], [3, 1, 2]]
  937. )
  938. self.repo.refs[b"HEAD"] = c3.id
  939. porcelain.symbolic_ref(self.repo.path, b"master")
  940. def test_set_symbolic_ref_other_than_master(self):
  941. c1, c2, c3 = build_commit_graph(
  942. self.repo.object_store,
  943. [[1], [2, 1], [3, 1, 2]],
  944. attrs=dict(refs="develop"),
  945. )
  946. self.repo.refs[b"HEAD"] = c3.id
  947. self.repo.refs[b"refs/heads/develop"] = c3.id
  948. porcelain.symbolic_ref(self.repo.path, b"develop")
  949. # test if we actually changed the file
  950. with self.repo.get_named_file("HEAD") as f:
  951. new_ref = f.read()
  952. self.assertEqual(new_ref, b"ref: refs/heads/develop\n")
  953. class DiffTreeTests(PorcelainTestCase):
  954. def test_empty(self):
  955. c1, c2, c3 = build_commit_graph(
  956. self.repo.object_store, [[1], [2, 1], [3, 1, 2]]
  957. )
  958. self.repo.refs[b"HEAD"] = c3.id
  959. outstream = BytesIO()
  960. porcelain.diff_tree(self.repo.path, c2.tree, c3.tree, outstream=outstream)
  961. self.assertEqual(outstream.getvalue(), b"")
  962. class CommitTreeTests(PorcelainTestCase):
  963. def test_simple(self):
  964. c1, c2, c3 = build_commit_graph(
  965. self.repo.object_store, [[1], [2, 1], [3, 1, 2]]
  966. )
  967. b = Blob()
  968. b.data = b"foo the bar"
  969. t = Tree()
  970. t.add(b"somename", 0o100644, b.id)
  971. self.repo.object_store.add_object(t)
  972. self.repo.object_store.add_object(b)
  973. sha = porcelain.commit_tree(
  974. self.repo.path,
  975. t.id,
  976. message=b"Withcommit.",
  977. author=b"Joe <joe@example.com>",
  978. committer=b"Jane <jane@example.com>",
  979. )
  980. self.assertIsInstance(sha, bytes)
  981. self.assertEqual(len(sha), 40)
  982. class RevListTests(PorcelainTestCase):
  983. def test_simple(self):
  984. c1, c2, c3 = build_commit_graph(
  985. self.repo.object_store, [[1], [2, 1], [3, 1, 2]]
  986. )
  987. outstream = BytesIO()
  988. porcelain.rev_list(self.repo.path, [c3.id], outstream=outstream)
  989. self.assertEqual(
  990. c3.id + b"\n" + c2.id + b"\n" + c1.id + b"\n", outstream.getvalue()
  991. )
  992. @skipIf(platform.python_implementation() == "PyPy" or sys.platform == "win32", "gpgme not easily available or supported on Windows and PyPy")
  993. class TagCreateSignTests(PorcelainGpgTestCase):
  994. def test_default_key(self):
  995. import gpg
  996. c1, c2, c3 = build_commit_graph(
  997. self.repo.object_store, [[1], [2, 1], [3, 1, 2]]
  998. )
  999. self.repo.refs[b"HEAD"] = c3.id
  1000. cfg = self.repo.get_config()
  1001. cfg.set(("user",), "signingKey", PorcelainGpgTestCase.DEFAULT_KEY_ID)
  1002. self.import_default_key()
  1003. porcelain.tag_create(
  1004. self.repo.path,
  1005. b"tryme",
  1006. b"foo <foo@bar.com>",
  1007. b"bar",
  1008. annotated=True,
  1009. sign=True,
  1010. )
  1011. tags = self.repo.refs.as_dict(b"refs/tags")
  1012. self.assertEqual(list(tags.keys()), [b"tryme"])
  1013. tag = self.repo[b"refs/tags/tryme"]
  1014. self.assertIsInstance(tag, Tag)
  1015. self.assertEqual(b"foo <foo@bar.com>", tag.tagger)
  1016. self.assertEqual(b"bar\n", tag.message)
  1017. self.assertLess(time.time() - tag.tag_time, 5)
  1018. tag = self.repo[b'refs/tags/tryme']
  1019. # GPG Signatures aren't deterministic, so we can't do a static assertion.
  1020. tag.verify()
  1021. tag.verify(keyids=[PorcelainGpgTestCase.DEFAULT_KEY_ID])
  1022. self.import_non_default_key()
  1023. self.assertRaises(
  1024. gpg.errors.MissingSignatures,
  1025. tag.verify,
  1026. keyids=[PorcelainGpgTestCase.NON_DEFAULT_KEY_ID],
  1027. )
  1028. tag._chunked_text = [b"bad data", tag._signature]
  1029. self.assertRaises(
  1030. gpg.errors.BadSignatures,
  1031. tag.verify,
  1032. )
  1033. def test_non_default_key(self):
  1034. c1, c2, c3 = build_commit_graph(
  1035. self.repo.object_store, [[1], [2, 1], [3, 1, 2]]
  1036. )
  1037. self.repo.refs[b"HEAD"] = c3.id
  1038. cfg = self.repo.get_config()
  1039. cfg.set(("user",), "signingKey", PorcelainGpgTestCase.DEFAULT_KEY_ID)
  1040. self.import_non_default_key()
  1041. porcelain.tag_create(
  1042. self.repo.path,
  1043. b"tryme",
  1044. b"foo <foo@bar.com>",
  1045. b"bar",
  1046. annotated=True,
  1047. sign=PorcelainGpgTestCase.NON_DEFAULT_KEY_ID,
  1048. )
  1049. tags = self.repo.refs.as_dict(b"refs/tags")
  1050. self.assertEqual(list(tags.keys()), [b"tryme"])
  1051. tag = self.repo[b"refs/tags/tryme"]
  1052. self.assertIsInstance(tag, Tag)
  1053. self.assertEqual(b"foo <foo@bar.com>", tag.tagger)
  1054. self.assertEqual(b"bar\n", tag.message)
  1055. self.assertLess(time.time() - tag.tag_time, 5)
  1056. tag = self.repo[b'refs/tags/tryme']
  1057. # GPG Signatures aren't deterministic, so we can't do a static assertion.
  1058. tag.verify()
  1059. class TagCreateTests(PorcelainTestCase):
  1060. def test_annotated(self):
  1061. c1, c2, c3 = build_commit_graph(
  1062. self.repo.object_store, [[1], [2, 1], [3, 1, 2]]
  1063. )
  1064. self.repo.refs[b"HEAD"] = c3.id
  1065. porcelain.tag_create(
  1066. self.repo.path,
  1067. b"tryme",
  1068. b"foo <foo@bar.com>",
  1069. b"bar",
  1070. annotated=True,
  1071. )
  1072. tags = self.repo.refs.as_dict(b"refs/tags")
  1073. self.assertEqual(list(tags.keys()), [b"tryme"])
  1074. tag = self.repo[b"refs/tags/tryme"]
  1075. self.assertIsInstance(tag, Tag)
  1076. self.assertEqual(b"foo <foo@bar.com>", tag.tagger)
  1077. self.assertEqual(b"bar\n", tag.message)
  1078. self.assertLess(time.time() - tag.tag_time, 5)
  1079. def test_unannotated(self):
  1080. c1, c2, c3 = build_commit_graph(
  1081. self.repo.object_store, [[1], [2, 1], [3, 1, 2]]
  1082. )
  1083. self.repo.refs[b"HEAD"] = c3.id
  1084. porcelain.tag_create(self.repo.path, b"tryme", annotated=False)
  1085. tags = self.repo.refs.as_dict(b"refs/tags")
  1086. self.assertEqual(list(tags.keys()), [b"tryme"])
  1087. self.repo[b"refs/tags/tryme"]
  1088. self.assertEqual(list(tags.values()), [self.repo.head()])
  1089. def test_unannotated_unicode(self):
  1090. c1, c2, c3 = build_commit_graph(
  1091. self.repo.object_store, [[1], [2, 1], [3, 1, 2]]
  1092. )
  1093. self.repo.refs[b"HEAD"] = c3.id
  1094. porcelain.tag_create(self.repo.path, "tryme", annotated=False)
  1095. tags = self.repo.refs.as_dict(b"refs/tags")
  1096. self.assertEqual(list(tags.keys()), [b"tryme"])
  1097. self.repo[b"refs/tags/tryme"]
  1098. self.assertEqual(list(tags.values()), [self.repo.head()])
  1099. class TagListTests(PorcelainTestCase):
  1100. def test_empty(self):
  1101. tags = porcelain.tag_list(self.repo.path)
  1102. self.assertEqual([], tags)
  1103. def test_simple(self):
  1104. self.repo.refs[b"refs/tags/foo"] = b"aa" * 20
  1105. self.repo.refs[b"refs/tags/bar/bla"] = b"bb" * 20
  1106. tags = porcelain.tag_list(self.repo.path)
  1107. self.assertEqual([b"bar/bla", b"foo"], tags)
  1108. class TagDeleteTests(PorcelainTestCase):
  1109. def test_simple(self):
  1110. [c1] = build_commit_graph(self.repo.object_store, [[1]])
  1111. self.repo[b"HEAD"] = c1.id
  1112. porcelain.tag_create(self.repo, b"foo")
  1113. self.assertIn(b"foo", porcelain.tag_list(self.repo))
  1114. porcelain.tag_delete(self.repo, b"foo")
  1115. self.assertNotIn(b"foo", porcelain.tag_list(self.repo))
  1116. class ResetTests(PorcelainTestCase):
  1117. def test_hard_head(self):
  1118. fullpath = os.path.join(self.repo.path, "foo")
  1119. with open(fullpath, "w") as f:
  1120. f.write("BAR")
  1121. porcelain.add(self.repo.path, paths=[fullpath])
  1122. porcelain.commit(
  1123. self.repo.path,
  1124. message=b"Some message",
  1125. committer=b"Jane <jane@example.com>",
  1126. author=b"John <john@example.com>",
  1127. )
  1128. with open(os.path.join(self.repo.path, "foo"), "wb") as f:
  1129. f.write(b"OOH")
  1130. porcelain.reset(self.repo, "hard", b"HEAD")
  1131. index = self.repo.open_index()
  1132. changes = list(
  1133. tree_changes(
  1134. self.repo,
  1135. index.commit(self.repo.object_store),
  1136. self.repo[b"HEAD"].tree,
  1137. )
  1138. )
  1139. self.assertEqual([], changes)
  1140. def test_hard_commit(self):
  1141. fullpath = os.path.join(self.repo.path, "foo")
  1142. with open(fullpath, "w") as f:
  1143. f.write("BAR")
  1144. porcelain.add(self.repo.path, paths=[fullpath])
  1145. sha = porcelain.commit(
  1146. self.repo.path,
  1147. message=b"Some message",
  1148. committer=b"Jane <jane@example.com>",
  1149. author=b"John <john@example.com>",
  1150. )
  1151. with open(fullpath, "wb") as f:
  1152. f.write(b"BAZ")
  1153. porcelain.add(self.repo.path, paths=[fullpath])
  1154. porcelain.commit(
  1155. self.repo.path,
  1156. message=b"Some other message",
  1157. committer=b"Jane <jane@example.com>",
  1158. author=b"John <john@example.com>",
  1159. )
  1160. porcelain.reset(self.repo, "hard", sha)
  1161. index = self.repo.open_index()
  1162. changes = list(
  1163. tree_changes(
  1164. self.repo,
  1165. index.commit(self.repo.object_store),
  1166. self.repo[sha].tree,
  1167. )
  1168. )
  1169. self.assertEqual([], changes)
  1170. class ResetFileTests(PorcelainTestCase):
  1171. def test_reset_modify_file_to_commit(self):
  1172. file = 'foo'
  1173. full_path = os.path.join(self.repo.path, file)
  1174. with open(full_path, 'w') as f:
  1175. f.write('hello')
  1176. porcelain.add(self.repo, paths=[full_path])
  1177. sha = porcelain.commit(
  1178. self.repo,
  1179. message=b"unitest",
  1180. committer=b"Jane <jane@example.com>",
  1181. author=b"John <john@example.com>",
  1182. )
  1183. with open(full_path, 'a') as f:
  1184. f.write('something new')
  1185. porcelain.reset_file(self.repo, file, target=sha)
  1186. with open(full_path, 'r') as f:
  1187. self.assertEqual('hello', f.read())
  1188. def test_reset_remove_file_to_commit(self):
  1189. file = 'foo'
  1190. full_path = os.path.join(self.repo.path, file)
  1191. with open(full_path, 'w') as f:
  1192. f.write('hello')
  1193. porcelain.add(self.repo, paths=[full_path])
  1194. sha = porcelain.commit(
  1195. self.repo,
  1196. message=b"unitest",
  1197. committer=b"Jane <jane@example.com>",
  1198. author=b"John <john@example.com>",
  1199. )
  1200. os.remove(full_path)
  1201. porcelain.reset_file(self.repo, file, target=sha)
  1202. with open(full_path, 'r') as f:
  1203. self.assertEqual('hello', f.read())
  1204. def test_resetfile_with_dir(self):
  1205. os.mkdir(os.path.join(self.repo.path, 'new_dir'))
  1206. full_path = os.path.join(self.repo.path, 'new_dir', 'foo')
  1207. with open(full_path, 'w') as f:
  1208. f.write('hello')
  1209. porcelain.add(self.repo, paths=[full_path])
  1210. sha = porcelain.commit(
  1211. self.repo,
  1212. message=b"unitest",
  1213. committer=b"Jane <jane@example.com>",
  1214. author=b"John <john@example.com>",
  1215. )
  1216. with open(full_path, 'a') as f:
  1217. f.write('something new')
  1218. porcelain.commit(
  1219. self.repo,
  1220. message=b"unitest 2",
  1221. committer=b"Jane <jane@example.com>",
  1222. author=b"John <john@example.com>",
  1223. )
  1224. porcelain.reset_file(self.repo, os.path.join('new_dir', 'foo'), target=sha)
  1225. with open(full_path, 'r') as f:
  1226. self.assertEqual('hello', f.read())
  1227. class PushTests(PorcelainTestCase):
  1228. def test_simple(self):
  1229. """
  1230. Basic test of porcelain push where self.repo is the remote. First
  1231. clone the remote, commit a file to the clone, then push the changes
  1232. back to the remote.
  1233. """
  1234. outstream = BytesIO()
  1235. errstream = BytesIO()
  1236. porcelain.commit(
  1237. repo=self.repo.path,
  1238. message=b"init",
  1239. author=b"author <email>",
  1240. committer=b"committer <email>",
  1241. )
  1242. # Setup target repo cloned from temp test repo
  1243. clone_path = tempfile.mkdtemp()
  1244. self.addCleanup(shutil.rmtree, clone_path)
  1245. target_repo = porcelain.clone(
  1246. self.repo.path, target=clone_path, errstream=errstream
  1247. )
  1248. try:
  1249. self.assertEqual(target_repo[b"HEAD"], self.repo[b"HEAD"])
  1250. finally:
  1251. target_repo.close()
  1252. # create a second file to be pushed back to origin
  1253. handle, fullpath = tempfile.mkstemp(dir=clone_path)
  1254. os.close(handle)
  1255. porcelain.add(repo=clone_path, paths=[fullpath])
  1256. porcelain.commit(
  1257. repo=clone_path,
  1258. message=b"push",
  1259. author=b"author <email>",
  1260. committer=b"committer <email>",
  1261. )
  1262. # Setup a non-checked out branch in the remote
  1263. refs_path = b"refs/heads/foo"
  1264. new_id = self.repo[b"HEAD"].id
  1265. self.assertNotEqual(new_id, ZERO_SHA)
  1266. self.repo.refs[refs_path] = new_id
  1267. # Push to the remote
  1268. porcelain.push(
  1269. clone_path,
  1270. "origin",
  1271. b"HEAD:" + refs_path,
  1272. outstream=outstream,
  1273. errstream=errstream,
  1274. )
  1275. self.assertEqual(
  1276. target_repo.refs[b"refs/remotes/origin/foo"],
  1277. target_repo.refs[b"HEAD"],
  1278. )
  1279. # Check that the target and source
  1280. with Repo(clone_path) as r_clone:
  1281. self.assertEqual(
  1282. {
  1283. b"HEAD": new_id,
  1284. b"refs/heads/foo": r_clone[b"HEAD"].id,
  1285. b"refs/heads/master": new_id,
  1286. },
  1287. self.repo.get_refs(),
  1288. )
  1289. self.assertEqual(r_clone[b"HEAD"].id, self.repo[refs_path].id)
  1290. # Get the change in the target repo corresponding to the add
  1291. # this will be in the foo branch.
  1292. change = list(
  1293. tree_changes(
  1294. self.repo,
  1295. self.repo[b"HEAD"].tree,
  1296. self.repo[b"refs/heads/foo"].tree,
  1297. )
  1298. )[0]
  1299. self.assertEqual(
  1300. os.path.basename(fullpath), change.new.path.decode("ascii")
  1301. )
  1302. def test_local_missing(self):
  1303. """Pushing a new branch."""
  1304. outstream = BytesIO()
  1305. errstream = BytesIO()
  1306. # Setup target repo cloned from temp test repo
  1307. clone_path = tempfile.mkdtemp()
  1308. self.addCleanup(shutil.rmtree, clone_path)
  1309. target_repo = porcelain.init(clone_path)
  1310. target_repo.close()
  1311. self.assertRaises(
  1312. porcelain.Error,
  1313. porcelain.push,
  1314. self.repo,
  1315. clone_path,
  1316. b"HEAD:refs/heads/master",
  1317. outstream=outstream,
  1318. errstream=errstream,
  1319. )
  1320. def test_new(self):
  1321. """Pushing a new branch."""
  1322. outstream = BytesIO()
  1323. errstream = BytesIO()
  1324. # Setup target repo cloned from temp test repo
  1325. clone_path = tempfile.mkdtemp()
  1326. self.addCleanup(shutil.rmtree, clone_path)
  1327. target_repo = porcelain.init(clone_path)
  1328. target_repo.close()
  1329. # create a second file to be pushed back to origin
  1330. handle, fullpath = tempfile.mkstemp(dir=clone_path)
  1331. os.close(handle)
  1332. porcelain.add(repo=clone_path, paths=[fullpath])
  1333. new_id = porcelain.commit(
  1334. repo=self.repo,
  1335. message=b"push",
  1336. author=b"author <email>",
  1337. committer=b"committer <email>",
  1338. )
  1339. # Push to the remote
  1340. porcelain.push(
  1341. self.repo,
  1342. clone_path,
  1343. b"HEAD:refs/heads/master",
  1344. outstream=outstream,
  1345. errstream=errstream,
  1346. )
  1347. with Repo(clone_path) as r_clone:
  1348. self.assertEqual(
  1349. {
  1350. b"HEAD": new_id,
  1351. b"refs/heads/master": new_id,
  1352. },
  1353. r_clone.get_refs(),
  1354. )
  1355. def test_delete(self):
  1356. """Basic test of porcelain push, removing a branch."""
  1357. outstream = BytesIO()
  1358. errstream = BytesIO()
  1359. porcelain.commit(
  1360. repo=self.repo.path,
  1361. message=b"init",
  1362. author=b"author <email>",
  1363. committer=b"committer <email>",
  1364. )
  1365. # Setup target repo cloned from temp test repo
  1366. clone_path = tempfile.mkdtemp()
  1367. self.addCleanup(shutil.rmtree, clone_path)
  1368. target_repo = porcelain.clone(
  1369. self.repo.path, target=clone_path, errstream=errstream
  1370. )
  1371. target_repo.close()
  1372. # Setup a non-checked out branch in the remote
  1373. refs_path = b"refs/heads/foo"
  1374. new_id = self.repo[b"HEAD"].id
  1375. self.assertNotEqual(new_id, ZERO_SHA)
  1376. self.repo.refs[refs_path] = new_id
  1377. # Push to the remote
  1378. porcelain.push(
  1379. clone_path,
  1380. self.repo.path,
  1381. b":" + refs_path,
  1382. outstream=outstream,
  1383. errstream=errstream,
  1384. )
  1385. self.assertEqual(
  1386. {
  1387. b"HEAD": new_id,
  1388. b"refs/heads/master": new_id,
  1389. },
  1390. self.repo.get_refs(),
  1391. )
  1392. def test_diverged(self):
  1393. outstream = BytesIO()
  1394. errstream = BytesIO()
  1395. porcelain.commit(
  1396. repo=self.repo.path,
  1397. message=b"init",
  1398. author=b"author <email>",
  1399. committer=b"committer <email>",
  1400. )
  1401. # Setup target repo cloned from temp test repo
  1402. clone_path = tempfile.mkdtemp()
  1403. self.addCleanup(shutil.rmtree, clone_path)
  1404. target_repo = porcelain.clone(
  1405. self.repo.path, target=clone_path, errstream=errstream
  1406. )
  1407. target_repo.close()
  1408. remote_id = porcelain.commit(
  1409. repo=self.repo.path,
  1410. message=b"remote change",
  1411. author=b"author <email>",
  1412. committer=b"committer <email>",
  1413. )
  1414. local_id = porcelain.commit(
  1415. repo=clone_path,
  1416. message=b"local change",
  1417. author=b"author <email>",
  1418. committer=b"committer <email>",
  1419. )
  1420. outstream = BytesIO()
  1421. errstream = BytesIO()
  1422. # Push to the remote
  1423. self.assertRaises(
  1424. porcelain.DivergedBranches,
  1425. porcelain.push,
  1426. clone_path,
  1427. self.repo.path,
  1428. b"refs/heads/master",
  1429. outstream=outstream,
  1430. errstream=errstream,
  1431. )
  1432. self.assertEqual(
  1433. {
  1434. b"HEAD": remote_id,
  1435. b"refs/heads/master": remote_id,
  1436. },
  1437. self.repo.get_refs(),
  1438. )
  1439. self.assertEqual(b"", outstream.getvalue())
  1440. self.assertEqual(b"", errstream.getvalue())
  1441. outstream = BytesIO()
  1442. errstream = BytesIO()
  1443. # Push to the remote with --force
  1444. porcelain.push(
  1445. clone_path,
  1446. self.repo.path,
  1447. b"refs/heads/master",
  1448. outstream=outstream,
  1449. errstream=errstream,
  1450. force=True,
  1451. )
  1452. self.assertEqual(
  1453. {
  1454. b"HEAD": local_id,
  1455. b"refs/heads/master": local_id,
  1456. },
  1457. self.repo.get_refs(),
  1458. )
  1459. self.assertEqual(b"", outstream.getvalue())
  1460. self.assertTrue(re.match(b"Push to .* successful.\n", errstream.getvalue()))
  1461. class PullTests(PorcelainTestCase):
  1462. def setUp(self):
  1463. super(PullTests, self).setUp()
  1464. # create a file for initial commit
  1465. handle, fullpath = tempfile.mkstemp(dir=self.repo.path)
  1466. os.close(handle)
  1467. porcelain.add(repo=self.repo.path, paths=fullpath)
  1468. porcelain.commit(
  1469. repo=self.repo.path,
  1470. message=b"test",
  1471. author=b"test <email>",
  1472. committer=b"test <email>",
  1473. )
  1474. # Setup target repo
  1475. self.target_path = tempfile.mkdtemp()
  1476. self.addCleanup(shutil.rmtree, self.target_path)
  1477. target_repo = porcelain.clone(
  1478. self.repo.path, target=self.target_path, errstream=BytesIO()
  1479. )
  1480. target_repo.close()
  1481. # create a second file to be pushed
  1482. handle, fullpath = tempfile.mkstemp(dir=self.repo.path)
  1483. os.close(handle)
  1484. porcelain.add(repo=self.repo.path, paths=fullpath)
  1485. porcelain.commit(
  1486. repo=self.repo.path,
  1487. message=b"test2",
  1488. author=b"test2 <email>",
  1489. committer=b"test2 <email>",
  1490. )
  1491. self.assertIn(b"refs/heads/master", self.repo.refs)
  1492. self.assertIn(b"refs/heads/master", target_repo.refs)
  1493. def test_simple(self):
  1494. outstream = BytesIO()
  1495. errstream = BytesIO()
  1496. # Pull changes into the cloned repo
  1497. porcelain.pull(
  1498. self.target_path,
  1499. self.repo.path,
  1500. b"refs/heads/master",
  1501. outstream=outstream,
  1502. errstream=errstream,
  1503. )
  1504. # Check the target repo for pushed changes
  1505. with Repo(self.target_path) as r:
  1506. self.assertEqual(r[b"HEAD"].id, self.repo[b"HEAD"].id)
  1507. def test_diverged(self):
  1508. outstream = BytesIO()
  1509. errstream = BytesIO()
  1510. c3a = porcelain.commit(
  1511. repo=self.target_path,
  1512. message=b"test3a",
  1513. author=b"test2 <email>",
  1514. committer=b"test2 <email>",
  1515. )
  1516. porcelain.commit(
  1517. repo=self.repo.path,
  1518. message=b"test3b",
  1519. author=b"test2 <email>",
  1520. committer=b"test2 <email>",
  1521. )
  1522. # Pull changes into the cloned repo
  1523. self.assertRaises(
  1524. porcelain.DivergedBranches,
  1525. porcelain.pull,
  1526. self.target_path,
  1527. self.repo.path,
  1528. b"refs/heads/master",
  1529. outstream=outstream,
  1530. errstream=errstream,
  1531. )
  1532. # Check the target repo for pushed changes
  1533. with Repo(self.target_path) as r:
  1534. self.assertEqual(r[b"refs/heads/master"].id, c3a)
  1535. self.assertRaises(
  1536. NotImplementedError,
  1537. porcelain.pull,
  1538. self.target_path,
  1539. self.repo.path,
  1540. b"refs/heads/master",
  1541. outstream=outstream,
  1542. errstream=errstream,
  1543. fast_forward=False,
  1544. )
  1545. # Check the target repo for pushed changes
  1546. with Repo(self.target_path) as r:
  1547. self.assertEqual(r[b"refs/heads/master"].id, c3a)
  1548. def test_no_refspec(self):
  1549. outstream = BytesIO()
  1550. errstream = BytesIO()
  1551. # Pull changes into the cloned repo
  1552. porcelain.pull(
  1553. self.target_path,
  1554. self.repo.path,
  1555. outstream=outstream,
  1556. errstream=errstream,
  1557. )
  1558. # Check the target repo for pushed changes
  1559. with Repo(self.target_path) as r:
  1560. self.assertEqual(r[b"HEAD"].id, self.repo[b"HEAD"].id)
  1561. def test_no_remote_location(self):
  1562. outstream = BytesIO()
  1563. errstream = BytesIO()
  1564. # Pull changes into the cloned repo
  1565. porcelain.pull(
  1566. self.target_path,
  1567. refspecs=b"refs/heads/master",
  1568. outstream=outstream,
  1569. errstream=errstream,
  1570. )
  1571. # Check the target repo for pushed changes
  1572. with Repo(self.target_path) as r:
  1573. self.assertEqual(r[b"HEAD"].id, self.repo[b"HEAD"].id)
  1574. class StatusTests(PorcelainTestCase):
  1575. def test_empty(self):
  1576. results = porcelain.status(self.repo)
  1577. self.assertEqual({"add": [], "delete": [], "modify": []}, results.staged)
  1578. self.assertEqual([], results.unstaged)
  1579. def test_status_base(self):
  1580. """Integration test for `status` functionality."""
  1581. # Commit a dummy file then modify it
  1582. fullpath = os.path.join(self.repo.path, "foo")
  1583. with open(fullpath, "w") as f:
  1584. f.write("origstuff")
  1585. porcelain.add(repo=self.repo.path, paths=[fullpath])
  1586. porcelain.commit(
  1587. repo=self.repo.path,
  1588. message=b"test status",
  1589. author=b"author <email>",
  1590. committer=b"committer <email>",
  1591. )
  1592. # modify access and modify time of path
  1593. os.utime(fullpath, (0, 0))
  1594. with open(fullpath, "wb") as f:
  1595. f.write(b"stuff")
  1596. # Make a dummy file and stage it
  1597. filename_add = "bar"
  1598. fullpath = os.path.join(self.repo.path, filename_add)
  1599. with open(fullpath, "w") as f:
  1600. f.write("stuff")
  1601. porcelain.add(repo=self.repo.path, paths=fullpath)
  1602. results = porcelain.status(self.repo)
  1603. self.assertEqual(results.staged["add"][0], filename_add.encode("ascii"))
  1604. self.assertEqual(results.unstaged, [b"foo"])
  1605. def test_status_all(self):
  1606. del_path = os.path.join(self.repo.path, "foo")
  1607. mod_path = os.path.join(self.repo.path, "bar")
  1608. add_path = os.path.join(self.repo.path, "baz")
  1609. us_path = os.path.join(self.repo.path, "blye")
  1610. ut_path = os.path.join(self.repo.path, "blyat")
  1611. with open(del_path, "w") as f:
  1612. f.write("origstuff")
  1613. with open(mod_path, "w") as f:
  1614. f.write("origstuff")
  1615. with open(us_path, "w") as f:
  1616. f.write("origstuff")
  1617. porcelain.add(repo=self.repo.path, paths=[del_path, mod_path, us_path])
  1618. porcelain.commit(
  1619. repo=self.repo.path,
  1620. message=b"test status",
  1621. author=b"author <email>",
  1622. committer=b"committer <email>",
  1623. )
  1624. porcelain.remove(self.repo.path, [del_path])
  1625. with open(add_path, "w") as f:
  1626. f.write("origstuff")
  1627. with open(mod_path, "w") as f:
  1628. f.write("more_origstuff")
  1629. with open(us_path, "w") as f:
  1630. f.write("more_origstuff")
  1631. porcelain.add(repo=self.repo.path, paths=[add_path, mod_path])
  1632. with open(us_path, "w") as f:
  1633. f.write("\norigstuff")
  1634. with open(ut_path, "w") as f:
  1635. f.write("origstuff")
  1636. results = porcelain.status(self.repo.path)
  1637. self.assertDictEqual(
  1638. {"add": [b"baz"], "delete": [b"foo"], "modify": [b"bar"]},
  1639. results.staged,
  1640. )
  1641. self.assertListEqual(results.unstaged, [b"blye"])
  1642. results_no_untracked = porcelain.status(self.repo.path, untracked_files="no")
  1643. self.assertListEqual(results_no_untracked.untracked, [])
  1644. def test_status_wrong_untracked_files_value(self):
  1645. with self.assertRaises(ValueError):
  1646. porcelain.status(self.repo.path, untracked_files="antani")
  1647. def test_status_crlf_mismatch(self):
  1648. # First make a commit as if the file has been added on a Linux system
  1649. # or with core.autocrlf=True
  1650. file_path = os.path.join(self.repo.path, "crlf")
  1651. with open(file_path, "wb") as f:
  1652. f.write(b"line1\nline2")
  1653. porcelain.add(repo=self.repo.path, paths=[file_path])
  1654. porcelain.commit(
  1655. repo=self.repo.path,
  1656. message=b"test status",
  1657. author=b"author <email>",
  1658. committer=b"committer <email>",
  1659. )
  1660. # Then update the file as if it was created by CGit on a Windows
  1661. # system with core.autocrlf=true
  1662. with open(file_path, "wb") as f:
  1663. f.write(b"line1\r\nline2")
  1664. results = porcelain.status(self.repo)
  1665. self.assertDictEqual({"add": [], "delete": [], "modify": []}, results.staged)
  1666. self.assertListEqual(results.unstaged, [b"crlf"])
  1667. self.assertListEqual(results.untracked, [])
  1668. def test_status_autocrlf_true(self):
  1669. # First make a commit as if the file has been added on a Linux system
  1670. # or with core.autocrlf=True
  1671. file_path = os.path.join(self.repo.path, "crlf")
  1672. with open(file_path, "wb") as f:
  1673. f.write(b"line1\nline2")
  1674. porcelain.add(repo=self.repo.path, paths=[file_path])
  1675. porcelain.commit(
  1676. repo=self.repo.path,
  1677. message=b"test status",
  1678. author=b"author <email>",
  1679. committer=b"committer <email>",
  1680. )
  1681. # Then update the file as if it was created by CGit on a Windows
  1682. # system with core.autocrlf=true
  1683. with open(file_path, "wb") as f:
  1684. f.write(b"line1\r\nline2")
  1685. # TODO: It should be set automatically by looking at the configuration
  1686. c = self.repo.get_config()
  1687. c.set("core", "autocrlf", True)
  1688. c.write_to_path()
  1689. results = porcelain.status(self.repo)
  1690. self.assertDictEqual({"add": [], "delete": [], "modify": []}, results.staged)
  1691. self.assertListEqual(results.unstaged, [])
  1692. self.assertListEqual(results.untracked, [])
  1693. def test_status_autocrlf_input(self):
  1694. # Commit existing file with CRLF
  1695. file_path = os.path.join(self.repo.path, "crlf-exists")
  1696. with open(file_path, "wb") as f:
  1697. f.write(b"line1\r\nline2")
  1698. porcelain.add(repo=self.repo.path, paths=[file_path])
  1699. porcelain.commit(
  1700. repo=self.repo.path,
  1701. message=b"test status",
  1702. author=b"author <email>",
  1703. committer=b"committer <email>",
  1704. )
  1705. c = self.repo.get_config()
  1706. c.set("core", "autocrlf", "input")
  1707. c.write_to_path()
  1708. # Add new (untracked) file
  1709. file_path = os.path.join(self.repo.path, "crlf-new")
  1710. with open(file_path, "wb") as f:
  1711. f.write(b"line1\r\nline2")
  1712. porcelain.add(repo=self.repo.path, paths=[file_path])
  1713. results = porcelain.status(self.repo)
  1714. self.assertDictEqual({"add": [b"crlf-new"], "delete": [], "modify": []}, results.staged)
  1715. self.assertListEqual(results.unstaged, [])
  1716. self.assertListEqual(results.untracked, [])
  1717. def test_get_tree_changes_add(self):
  1718. """Unit test for get_tree_changes add."""
  1719. # Make a dummy file, stage
  1720. filename = "bar"
  1721. fullpath = os.path.join(self.repo.path, filename)
  1722. with open(fullpath, "w") as f:
  1723. f.write("stuff")
  1724. porcelain.add(repo=self.repo.path, paths=fullpath)
  1725. porcelain.commit(
  1726. repo=self.repo.path,
  1727. message=b"test status",
  1728. author=b"author <email>",
  1729. committer=b"committer <email>",
  1730. )
  1731. filename = "foo"
  1732. fullpath = os.path.join(self.repo.path, filename)
  1733. with open(fullpath, "w") as f:
  1734. f.write("stuff")
  1735. porcelain.add(repo=self.repo.path, paths=fullpath)
  1736. changes = porcelain.get_tree_changes(self.repo.path)
  1737. self.assertEqual(changes["add"][0], filename.encode("ascii"))
  1738. self.assertEqual(len(changes["add"]), 1)
  1739. self.assertEqual(len(changes["modify"]), 0)
  1740. self.assertEqual(len(changes["delete"]), 0)
  1741. def test_get_tree_changes_modify(self):
  1742. """Unit test for get_tree_changes modify."""
  1743. # Make a dummy file, stage, commit, modify
  1744. filename = "foo"
  1745. fullpath = os.path.join(self.repo.path, filename)
  1746. with open(fullpath, "w") as f:
  1747. f.write("stuff")
  1748. porcelain.add(repo=self.repo.path, paths=fullpath)
  1749. porcelain.commit(
  1750. repo=self.repo.path,
  1751. message=b"test status",
  1752. author=b"author <email>",
  1753. committer=b"committer <email>",
  1754. )
  1755. with open(fullpath, "w") as f:
  1756. f.write("otherstuff")
  1757. porcelain.add(repo=self.repo.path, paths=fullpath)
  1758. changes = porcelain.get_tree_changes(self.repo.path)
  1759. self.assertEqual(changes["modify"][0], filename.encode("ascii"))
  1760. self.assertEqual(len(changes["add"]), 0)
  1761. self.assertEqual(len(changes["modify"]), 1)
  1762. self.assertEqual(len(changes["delete"]), 0)
  1763. def test_get_tree_changes_delete(self):
  1764. """Unit test for get_tree_changes delete."""
  1765. # Make a dummy file, stage, commit, remove
  1766. filename = "foo"
  1767. fullpath = os.path.join(self.repo.path, filename)
  1768. with open(fullpath, "w") as f:
  1769. f.write("stuff")
  1770. porcelain.add(repo=self.repo.path, paths=fullpath)
  1771. porcelain.commit(
  1772. repo=self.repo.path,
  1773. message=b"test status",
  1774. author=b"author <email>",
  1775. committer=b"committer <email>",
  1776. )
  1777. cwd = os.getcwd()
  1778. try:
  1779. os.chdir(self.repo.path)
  1780. porcelain.remove(repo=self.repo.path, paths=[filename])
  1781. finally:
  1782. os.chdir(cwd)
  1783. changes = porcelain.get_tree_changes(self.repo.path)
  1784. self.assertEqual(changes["delete"][0], filename.encode("ascii"))
  1785. self.assertEqual(len(changes["add"]), 0)
  1786. self.assertEqual(len(changes["modify"]), 0)
  1787. self.assertEqual(len(changes["delete"]), 1)
  1788. def test_get_untracked_paths(self):
  1789. with open(os.path.join(self.repo.path, ".gitignore"), "w") as f:
  1790. f.write("ignored\n")
  1791. with open(os.path.join(self.repo.path, "ignored"), "w") as f:
  1792. f.write("blah\n")
  1793. with open(os.path.join(self.repo.path, "notignored"), "w") as f:
  1794. f.write("blah\n")
  1795. os.symlink(
  1796. os.path.join(self.repo.path, os.pardir, "external_target"),
  1797. os.path.join(self.repo.path, "link"),
  1798. )
  1799. self.assertEqual(
  1800. set(["ignored", "notignored", ".gitignore", "link"]),
  1801. set(
  1802. porcelain.get_untracked_paths(
  1803. self.repo.path, self.repo.path, self.repo.open_index()
  1804. )
  1805. ),
  1806. )
  1807. self.assertEqual(
  1808. set([".gitignore", "notignored", "link"]),
  1809. set(porcelain.status(self.repo).untracked),
  1810. )
  1811. self.assertEqual(
  1812. set([".gitignore", "notignored", "ignored", "link"]),
  1813. set(porcelain.status(self.repo, ignored=True).untracked),
  1814. )
  1815. def test_get_untracked_paths_subrepo(self):
  1816. with open(os.path.join(self.repo.path, ".gitignore"), "w") as f:
  1817. f.write("nested/\n")
  1818. with open(os.path.join(self.repo.path, "notignored"), "w") as f:
  1819. f.write("blah\n")
  1820. subrepo = Repo.init(os.path.join(self.repo.path, "nested"), mkdir=True)
  1821. with open(os.path.join(subrepo.path, "ignored"), "w") as f:
  1822. f.write("bleep\n")
  1823. with open(os.path.join(subrepo.path, "with"), "w") as f:
  1824. f.write("bloop\n")
  1825. with open(os.path.join(subrepo.path, "manager"), "w") as f:
  1826. f.write("blop\n")
  1827. self.assertEqual(
  1828. set([".gitignore", "notignored", os.path.join("nested", "")]),
  1829. set(
  1830. porcelain.get_untracked_paths(
  1831. self.repo.path, self.repo.path, self.repo.open_index()
  1832. )
  1833. ),
  1834. )
  1835. self.assertEqual(
  1836. set([".gitignore", "notignored"]),
  1837. set(
  1838. porcelain.get_untracked_paths(
  1839. self.repo.path,
  1840. self.repo.path,
  1841. self.repo.open_index(),
  1842. exclude_ignored=True,
  1843. )
  1844. ),
  1845. )
  1846. self.assertEqual(
  1847. set(["ignored", "with", "manager"]),
  1848. set(
  1849. porcelain.get_untracked_paths(
  1850. subrepo.path, subrepo.path, subrepo.open_index()
  1851. )
  1852. ),
  1853. )
  1854. self.assertEqual(
  1855. set(),
  1856. set(
  1857. porcelain.get_untracked_paths(
  1858. subrepo.path,
  1859. self.repo.path,
  1860. self.repo.open_index(),
  1861. )
  1862. ),
  1863. )
  1864. self.assertEqual(
  1865. set([os.path.join('nested', 'ignored'),
  1866. os.path.join('nested', 'with'),
  1867. os.path.join('nested', 'manager')]),
  1868. set(
  1869. porcelain.get_untracked_paths(
  1870. self.repo.path,
  1871. subrepo.path,
  1872. self.repo.open_index(),
  1873. )
  1874. ),
  1875. )
  1876. def test_get_untracked_paths_subdir(self):
  1877. with open(os.path.join(self.repo.path, ".gitignore"), "w") as f:
  1878. f.write("subdir/\nignored")
  1879. with open(os.path.join(self.repo.path, "notignored"), "w") as f:
  1880. f.write("blah\n")
  1881. os.mkdir(os.path.join(self.repo.path, "subdir"))
  1882. with open(os.path.join(self.repo.path, "ignored"), "w") as f:
  1883. f.write("foo")
  1884. with open(os.path.join(self.repo.path, "subdir", "ignored"), "w") as f:
  1885. f.write("foo")
  1886. self.assertEqual(
  1887. set(
  1888. [
  1889. ".gitignore",
  1890. "notignored",
  1891. "ignored",
  1892. os.path.join("subdir", ""),
  1893. ]
  1894. ),
  1895. set(
  1896. porcelain.get_untracked_paths(
  1897. self.repo.path,
  1898. self.repo.path,
  1899. self.repo.open_index(),
  1900. )
  1901. )
  1902. )
  1903. self.assertEqual(
  1904. set([".gitignore", "notignored"]),
  1905. set(
  1906. porcelain.get_untracked_paths(
  1907. self.repo.path,
  1908. self.repo.path,
  1909. self.repo.open_index(),
  1910. exclude_ignored=True,
  1911. )
  1912. )
  1913. )
  1914. def test_get_untracked_paths_invalid_untracked_files(self):
  1915. with self.assertRaises(ValueError):
  1916. list(
  1917. porcelain.get_untracked_paths(
  1918. self.repo.path,
  1919. self.repo.path,
  1920. self.repo.open_index(),
  1921. untracked_files="invalid_value",
  1922. )
  1923. )
  1924. def test_get_untracked_paths_normal(self):
  1925. with self.assertRaises(NotImplementedError):
  1926. _, _, _ = porcelain.status(
  1927. repo=self.repo.path, untracked_files="normal"
  1928. )
  1929. # TODO(jelmer): Add test for dulwich.porcelain.daemon
  1930. class UploadPackTests(PorcelainTestCase):
  1931. """Tests for upload_pack."""
  1932. def test_upload_pack(self):
  1933. outf = BytesIO()
  1934. exitcode = porcelain.upload_pack(self.repo.path, BytesIO(b"0000"), outf)
  1935. outlines = outf.getvalue().splitlines()
  1936. self.assertEqual([b"0000"], outlines)
  1937. self.assertEqual(0, exitcode)
  1938. class ReceivePackTests(PorcelainTestCase):
  1939. """Tests for receive_pack."""
  1940. def test_receive_pack(self):
  1941. filename = "foo"
  1942. fullpath = os.path.join(self.repo.path, filename)
  1943. with open(fullpath, "w") as f:
  1944. f.write("stuff")
  1945. porcelain.add(repo=self.repo.path, paths=fullpath)
  1946. self.repo.do_commit(
  1947. message=b"test status",
  1948. author=b"author <email>",
  1949. committer=b"committer <email>",
  1950. author_timestamp=1402354300,
  1951. commit_timestamp=1402354300,
  1952. author_timezone=0,
  1953. commit_timezone=0,
  1954. )
  1955. outf = BytesIO()
  1956. exitcode = porcelain.receive_pack(self.repo.path, BytesIO(b"0000"), outf)
  1957. outlines = outf.getvalue().splitlines()
  1958. self.assertEqual(
  1959. [
  1960. b"0091319b56ce3aee2d489f759736a79cc552c9bb86d9 HEAD\x00 report-status "
  1961. b"delete-refs quiet ofs-delta side-band-64k "
  1962. b"no-done symref=HEAD:refs/heads/master",
  1963. b"003f319b56ce3aee2d489f759736a79cc552c9bb86d9 refs/heads/master",
  1964. b"0000",
  1965. ],
  1966. outlines,
  1967. )
  1968. self.assertEqual(0, exitcode)
  1969. class BranchListTests(PorcelainTestCase):
  1970. def test_standard(self):
  1971. self.assertEqual(set([]), set(porcelain.branch_list(self.repo)))
  1972. def test_new_branch(self):
  1973. [c1] = build_commit_graph(self.repo.object_store, [[1]])
  1974. self.repo[b"HEAD"] = c1.id
  1975. porcelain.branch_create(self.repo, b"foo")
  1976. self.assertEqual(
  1977. set([b"master", b"foo"]), set(porcelain.branch_list(self.repo))
  1978. )
  1979. class BranchCreateTests(PorcelainTestCase):
  1980. def test_branch_exists(self):
  1981. [c1] = build_commit_graph(self.repo.object_store, [[1]])
  1982. self.repo[b"HEAD"] = c1.id
  1983. porcelain.branch_create(self.repo, b"foo")
  1984. self.assertRaises(porcelain.Error, porcelain.branch_create, self.repo, b"foo")
  1985. porcelain.branch_create(self.repo, b"foo", force=True)
  1986. def test_new_branch(self):
  1987. [c1] = build_commit_graph(self.repo.object_store, [[1]])
  1988. self.repo[b"HEAD"] = c1.id
  1989. porcelain.branch_create(self.repo, b"foo")
  1990. self.assertEqual(
  1991. set([b"master", b"foo"]), set(porcelain.branch_list(self.repo))
  1992. )
  1993. class BranchDeleteTests(PorcelainTestCase):
  1994. def test_simple(self):
  1995. [c1] = build_commit_graph(self.repo.object_store, [[1]])
  1996. self.repo[b"HEAD"] = c1.id
  1997. porcelain.branch_create(self.repo, b"foo")
  1998. self.assertIn(b"foo", porcelain.branch_list(self.repo))
  1999. porcelain.branch_delete(self.repo, b"foo")
  2000. self.assertNotIn(b"foo", porcelain.branch_list(self.repo))
  2001. def test_simple_unicode(self):
  2002. [c1] = build_commit_graph(self.repo.object_store, [[1]])
  2003. self.repo[b"HEAD"] = c1.id
  2004. porcelain.branch_create(self.repo, "foo")
  2005. self.assertIn(b"foo", porcelain.branch_list(self.repo))
  2006. porcelain.branch_delete(self.repo, "foo")
  2007. self.assertNotIn(b"foo", porcelain.branch_list(self.repo))
  2008. class FetchTests(PorcelainTestCase):
  2009. def test_simple(self):
  2010. outstream = BytesIO()
  2011. errstream = BytesIO()
  2012. # create a file for initial commit
  2013. handle, fullpath = tempfile.mkstemp(dir=self.repo.path)
  2014. os.close(handle)
  2015. porcelain.add(repo=self.repo.path, paths=fullpath)
  2016. porcelain.commit(
  2017. repo=self.repo.path,
  2018. message=b"test",
  2019. author=b"test <email>",
  2020. committer=b"test <email>",
  2021. )
  2022. # Setup target repo
  2023. target_path = tempfile.mkdtemp()
  2024. self.addCleanup(shutil.rmtree, target_path)
  2025. target_repo = porcelain.clone(
  2026. self.repo.path, target=target_path, errstream=errstream
  2027. )
  2028. # create a second file to be pushed
  2029. handle, fullpath = tempfile.mkstemp(dir=self.repo.path)
  2030. os.close(handle)
  2031. porcelain.add(repo=self.repo.path, paths=fullpath)
  2032. porcelain.commit(
  2033. repo=self.repo.path,
  2034. message=b"test2",
  2035. author=b"test2 <email>",
  2036. committer=b"test2 <email>",
  2037. )
  2038. self.assertNotIn(self.repo[b"HEAD"].id, target_repo)
  2039. target_repo.close()
  2040. # Fetch changes into the cloned repo
  2041. porcelain.fetch(target_path, "origin", outstream=outstream, errstream=errstream)
  2042. # Assert that fetch updated the local image of the remote
  2043. self.assert_correct_remote_refs(target_repo.get_refs(), self.repo.get_refs())
  2044. # Check the target repo for pushed changes
  2045. with Repo(target_path) as r:
  2046. self.assertIn(self.repo[b"HEAD"].id, r)
  2047. def test_with_remote_name(self):
  2048. remote_name = "origin"
  2049. outstream = BytesIO()
  2050. errstream = BytesIO()
  2051. # create a file for initial commit
  2052. handle, fullpath = tempfile.mkstemp(dir=self.repo.path)
  2053. os.close(handle)
  2054. porcelain.add(repo=self.repo.path, paths=fullpath)
  2055. porcelain.commit(
  2056. repo=self.repo.path,
  2057. message=b"test",
  2058. author=b"test <email>",
  2059. committer=b"test <email>",
  2060. )
  2061. # Setup target repo
  2062. target_path = tempfile.mkdtemp()
  2063. self.addCleanup(shutil.rmtree, target_path)
  2064. target_repo = porcelain.clone(
  2065. self.repo.path, target=target_path, errstream=errstream
  2066. )
  2067. # Capture current refs
  2068. target_refs = target_repo.get_refs()
  2069. # create a second file to be pushed
  2070. handle, fullpath = tempfile.mkstemp(dir=self.repo.path)
  2071. os.close(handle)
  2072. porcelain.add(repo=self.repo.path, paths=fullpath)
  2073. porcelain.commit(
  2074. repo=self.repo.path,
  2075. message=b"test2",
  2076. author=b"test2 <email>",
  2077. committer=b"test2 <email>",
  2078. )
  2079. self.assertNotIn(self.repo[b"HEAD"].id, target_repo)
  2080. target_config = target_repo.get_config()
  2081. target_config.set(
  2082. (b"remote", remote_name.encode()), b"url", self.repo.path.encode()
  2083. )
  2084. target_repo.close()
  2085. # Fetch changes into the cloned repo
  2086. porcelain.fetch(
  2087. target_path, remote_name, outstream=outstream, errstream=errstream
  2088. )
  2089. # Assert that fetch updated the local image of the remote
  2090. self.assert_correct_remote_refs(target_repo.get_refs(), self.repo.get_refs())
  2091. # Check the target repo for pushed changes, as well as updates
  2092. # for the refs
  2093. with Repo(target_path) as r:
  2094. self.assertIn(self.repo[b"HEAD"].id, r)
  2095. self.assertNotEqual(self.repo.get_refs(), target_refs)
  2096. def assert_correct_remote_refs(
  2097. self, local_refs, remote_refs, remote_name=b"origin"
  2098. ):
  2099. """Assert that known remote refs corresponds to actual remote refs."""
  2100. local_ref_prefix = b"refs/heads"
  2101. remote_ref_prefix = b"refs/remotes/" + remote_name
  2102. locally_known_remote_refs = {
  2103. k[len(remote_ref_prefix) + 1 :]: v
  2104. for k, v in local_refs.items()
  2105. if k.startswith(remote_ref_prefix)
  2106. }
  2107. normalized_remote_refs = {
  2108. k[len(local_ref_prefix) + 1 :]: v
  2109. for k, v in remote_refs.items()
  2110. if k.startswith(local_ref_prefix)
  2111. }
  2112. if b"HEAD" in locally_known_remote_refs and b"HEAD" in remote_refs:
  2113. normalized_remote_refs[b"HEAD"] = remote_refs[b"HEAD"]
  2114. self.assertEqual(locally_known_remote_refs, normalized_remote_refs)
  2115. class RepackTests(PorcelainTestCase):
  2116. def test_empty(self):
  2117. porcelain.repack(self.repo)
  2118. def test_simple(self):
  2119. handle, fullpath = tempfile.mkstemp(dir=self.repo.path)
  2120. os.close(handle)
  2121. porcelain.add(repo=self.repo.path, paths=fullpath)
  2122. porcelain.repack(self.repo)
  2123. class LsTreeTests(PorcelainTestCase):
  2124. def test_empty(self):
  2125. porcelain.commit(
  2126. repo=self.repo.path,
  2127. message=b"test status",
  2128. author=b"author <email>",
  2129. committer=b"committer <email>",
  2130. )
  2131. f = StringIO()
  2132. porcelain.ls_tree(self.repo, b"HEAD", outstream=f)
  2133. self.assertEqual(f.getvalue(), "")
  2134. def test_simple(self):
  2135. # Commit a dummy file then modify it
  2136. fullpath = os.path.join(self.repo.path, "foo")
  2137. with open(fullpath, "w") as f:
  2138. f.write("origstuff")
  2139. porcelain.add(repo=self.repo.path, paths=[fullpath])
  2140. porcelain.commit(
  2141. repo=self.repo.path,
  2142. message=b"test status",
  2143. author=b"author <email>",
  2144. committer=b"committer <email>",
  2145. )
  2146. f = StringIO()
  2147. porcelain.ls_tree(self.repo, b"HEAD", outstream=f)
  2148. self.assertEqual(
  2149. f.getvalue(),
  2150. "100644 blob 8b82634d7eae019850bb883f06abf428c58bc9aa\tfoo\n",
  2151. )
  2152. def test_recursive(self):
  2153. # Create a directory then write a dummy file in it
  2154. dirpath = os.path.join(self.repo.path, "adir")
  2155. filepath = os.path.join(dirpath, "afile")
  2156. os.mkdir(dirpath)
  2157. with open(filepath, "w") as f:
  2158. f.write("origstuff")
  2159. porcelain.add(repo=self.repo.path, paths=[filepath])
  2160. porcelain.commit(
  2161. repo=self.repo.path,
  2162. message=b"test status",
  2163. author=b"author <email>",
  2164. committer=b"committer <email>",
  2165. )
  2166. f = StringIO()
  2167. porcelain.ls_tree(self.repo, b"HEAD", outstream=f)
  2168. self.assertEqual(
  2169. f.getvalue(),
  2170. "40000 tree b145cc69a5e17693e24d8a7be0016ed8075de66d\tadir\n",
  2171. )
  2172. f = StringIO()
  2173. porcelain.ls_tree(self.repo, b"HEAD", outstream=f, recursive=True)
  2174. self.assertEqual(
  2175. f.getvalue(),
  2176. "40000 tree b145cc69a5e17693e24d8a7be0016ed8075de66d\tadir\n"
  2177. "100644 blob 8b82634d7eae019850bb883f06abf428c58bc9aa\tadir"
  2178. "/afile\n",
  2179. )
  2180. class LsRemoteTests(PorcelainTestCase):
  2181. def test_empty(self):
  2182. self.assertEqual({}, porcelain.ls_remote(self.repo.path))
  2183. def test_some(self):
  2184. cid = porcelain.commit(
  2185. repo=self.repo.path,
  2186. message=b"test status",
  2187. author=b"author <email>",
  2188. committer=b"committer <email>",
  2189. )
  2190. self.assertEqual(
  2191. {b"refs/heads/master": cid, b"HEAD": cid},
  2192. porcelain.ls_remote(self.repo.path),
  2193. )
  2194. class LsFilesTests(PorcelainTestCase):
  2195. def test_empty(self):
  2196. self.assertEqual([], list(porcelain.ls_files(self.repo)))
  2197. def test_simple(self):
  2198. # Commit a dummy file then modify it
  2199. fullpath = os.path.join(self.repo.path, "foo")
  2200. with open(fullpath, "w") as f:
  2201. f.write("origstuff")
  2202. porcelain.add(repo=self.repo.path, paths=[fullpath])
  2203. self.assertEqual([b"foo"], list(porcelain.ls_files(self.repo)))
  2204. class RemoteAddTests(PorcelainTestCase):
  2205. def test_new(self):
  2206. porcelain.remote_add(self.repo, "jelmer", "git://jelmer.uk/code/dulwich")
  2207. c = self.repo.get_config()
  2208. self.assertEqual(
  2209. c.get((b"remote", b"jelmer"), b"url"),
  2210. b"git://jelmer.uk/code/dulwich",
  2211. )
  2212. def test_exists(self):
  2213. porcelain.remote_add(self.repo, "jelmer", "git://jelmer.uk/code/dulwich")
  2214. self.assertRaises(
  2215. porcelain.RemoteExists,
  2216. porcelain.remote_add,
  2217. self.repo,
  2218. "jelmer",
  2219. "git://jelmer.uk/code/dulwich",
  2220. )
  2221. class RemoteRemoveTests(PorcelainTestCase):
  2222. def test_remove(self):
  2223. porcelain.remote_add(self.repo, "jelmer", "git://jelmer.uk/code/dulwich")
  2224. c = self.repo.get_config()
  2225. self.assertEqual(
  2226. c.get((b"remote", b"jelmer"), b"url"),
  2227. b"git://jelmer.uk/code/dulwich",
  2228. )
  2229. porcelain.remote_remove(self.repo, "jelmer")
  2230. self.assertRaises(KeyError, porcelain.remote_remove, self.repo, "jelmer")
  2231. c = self.repo.get_config()
  2232. self.assertRaises(KeyError, c.get, (b"remote", b"jelmer"), b"url")
  2233. class CheckIgnoreTests(PorcelainTestCase):
  2234. def test_check_ignored(self):
  2235. with open(os.path.join(self.repo.path, ".gitignore"), "w") as f:
  2236. f.write("foo")
  2237. foo_path = os.path.join(self.repo.path, "foo")
  2238. with open(foo_path, "w") as f:
  2239. f.write("BAR")
  2240. bar_path = os.path.join(self.repo.path, "bar")
  2241. with open(bar_path, "w") as f:
  2242. f.write("BAR")
  2243. self.assertEqual(["foo"], list(porcelain.check_ignore(self.repo, [foo_path])))
  2244. self.assertEqual([], list(porcelain.check_ignore(self.repo, [bar_path])))
  2245. def test_check_added_abs(self):
  2246. path = os.path.join(self.repo.path, "foo")
  2247. with open(path, "w") as f:
  2248. f.write("BAR")
  2249. self.repo.stage(["foo"])
  2250. with open(os.path.join(self.repo.path, ".gitignore"), "w") as f:
  2251. f.write("foo\n")
  2252. self.assertEqual([], list(porcelain.check_ignore(self.repo, [path])))
  2253. self.assertEqual(
  2254. ["foo"],
  2255. list(porcelain.check_ignore(self.repo, [path], no_index=True)),
  2256. )
  2257. def test_check_added_rel(self):
  2258. with open(os.path.join(self.repo.path, "foo"), "w") as f:
  2259. f.write("BAR")
  2260. self.repo.stage(["foo"])
  2261. with open(os.path.join(self.repo.path, ".gitignore"), "w") as f:
  2262. f.write("foo\n")
  2263. cwd = os.getcwd()
  2264. os.mkdir(os.path.join(self.repo.path, "bar"))
  2265. os.chdir(os.path.join(self.repo.path, "bar"))
  2266. try:
  2267. self.assertEqual(list(porcelain.check_ignore(self.repo, ["../foo"])), [])
  2268. self.assertEqual(
  2269. ["../foo"],
  2270. list(porcelain.check_ignore(self.repo, ["../foo"], no_index=True)),
  2271. )
  2272. finally:
  2273. os.chdir(cwd)
  2274. class UpdateHeadTests(PorcelainTestCase):
  2275. def test_set_to_branch(self):
  2276. [c1] = build_commit_graph(self.repo.object_store, [[1]])
  2277. self.repo.refs[b"refs/heads/blah"] = c1.id
  2278. porcelain.update_head(self.repo, "blah")
  2279. self.assertEqual(c1.id, self.repo.head())
  2280. self.assertEqual(b"ref: refs/heads/blah", self.repo.refs.read_ref(b"HEAD"))
  2281. def test_set_to_branch_detached(self):
  2282. [c1] = build_commit_graph(self.repo.object_store, [[1]])
  2283. self.repo.refs[b"refs/heads/blah"] = c1.id
  2284. porcelain.update_head(self.repo, "blah", detached=True)
  2285. self.assertEqual(c1.id, self.repo.head())
  2286. self.assertEqual(c1.id, self.repo.refs.read_ref(b"HEAD"))
  2287. def test_set_to_commit_detached(self):
  2288. [c1] = build_commit_graph(self.repo.object_store, [[1]])
  2289. self.repo.refs[b"refs/heads/blah"] = c1.id
  2290. porcelain.update_head(self.repo, c1.id, detached=True)
  2291. self.assertEqual(c1.id, self.repo.head())
  2292. self.assertEqual(c1.id, self.repo.refs.read_ref(b"HEAD"))
  2293. def test_set_new_branch(self):
  2294. [c1] = build_commit_graph(self.repo.object_store, [[1]])
  2295. self.repo.refs[b"refs/heads/blah"] = c1.id
  2296. porcelain.update_head(self.repo, "blah", new_branch="bar")
  2297. self.assertEqual(c1.id, self.repo.head())
  2298. self.assertEqual(b"ref: refs/heads/bar", self.repo.refs.read_ref(b"HEAD"))
  2299. class MailmapTests(PorcelainTestCase):
  2300. def test_no_mailmap(self):
  2301. self.assertEqual(
  2302. b"Jelmer Vernooij <jelmer@samba.org>",
  2303. porcelain.check_mailmap(self.repo, b"Jelmer Vernooij <jelmer@samba.org>"),
  2304. )
  2305. def test_mailmap_lookup(self):
  2306. with open(os.path.join(self.repo.path, ".mailmap"), "wb") as f:
  2307. f.write(
  2308. b"""\
  2309. Jelmer Vernooij <jelmer@debian.org>
  2310. """
  2311. )
  2312. self.assertEqual(
  2313. b"Jelmer Vernooij <jelmer@debian.org>",
  2314. porcelain.check_mailmap(self.repo, b"Jelmer Vernooij <jelmer@samba.org>"),
  2315. )
  2316. class FsckTests(PorcelainTestCase):
  2317. def test_none(self):
  2318. self.assertEqual([], list(porcelain.fsck(self.repo)))
  2319. def test_git_dir(self):
  2320. obj = Tree()
  2321. a = Blob()
  2322. a.data = b"foo"
  2323. obj.add(b".git", 0o100644, a.id)
  2324. self.repo.object_store.add_objects([(a, None), (obj, None)])
  2325. self.assertEqual(
  2326. [(obj.id, "invalid name .git")],
  2327. [(sha, str(e)) for (sha, e) in porcelain.fsck(self.repo)],
  2328. )
  2329. class DescribeTests(PorcelainTestCase):
  2330. def test_no_commits(self):
  2331. self.assertRaises(KeyError, porcelain.describe, self.repo.path)
  2332. def test_single_commit(self):
  2333. fullpath = os.path.join(self.repo.path, "foo")
  2334. with open(fullpath, "w") as f:
  2335. f.write("BAR")
  2336. porcelain.add(repo=self.repo.path, paths=[fullpath])
  2337. sha = porcelain.commit(
  2338. self.repo.path,
  2339. message=b"Some message",
  2340. author=b"Joe <joe@example.com>",
  2341. committer=b"Bob <bob@example.com>",
  2342. )
  2343. self.assertEqual(
  2344. "g{}".format(sha[:7].decode("ascii")),
  2345. porcelain.describe(self.repo.path),
  2346. )
  2347. def test_tag(self):
  2348. fullpath = os.path.join(self.repo.path, "foo")
  2349. with open(fullpath, "w") as f:
  2350. f.write("BAR")
  2351. porcelain.add(repo=self.repo.path, paths=[fullpath])
  2352. porcelain.commit(
  2353. self.repo.path,
  2354. message=b"Some message",
  2355. author=b"Joe <joe@example.com>",
  2356. committer=b"Bob <bob@example.com>",
  2357. )
  2358. porcelain.tag_create(
  2359. self.repo.path,
  2360. b"tryme",
  2361. b"foo <foo@bar.com>",
  2362. b"bar",
  2363. annotated=True,
  2364. )
  2365. self.assertEqual("tryme", porcelain.describe(self.repo.path))
  2366. def test_tag_and_commit(self):
  2367. fullpath = os.path.join(self.repo.path, "foo")
  2368. with open(fullpath, "w") as f:
  2369. f.write("BAR")
  2370. porcelain.add(repo=self.repo.path, paths=[fullpath])
  2371. porcelain.commit(
  2372. self.repo.path,
  2373. message=b"Some message",
  2374. author=b"Joe <joe@example.com>",
  2375. committer=b"Bob <bob@example.com>",
  2376. )
  2377. porcelain.tag_create(
  2378. self.repo.path,
  2379. b"tryme",
  2380. b"foo <foo@bar.com>",
  2381. b"bar",
  2382. annotated=True,
  2383. )
  2384. with open(fullpath, "w") as f:
  2385. f.write("BAR2")
  2386. porcelain.add(repo=self.repo.path, paths=[fullpath])
  2387. sha = porcelain.commit(
  2388. self.repo.path,
  2389. message=b"Some message",
  2390. author=b"Joe <joe@example.com>",
  2391. committer=b"Bob <bob@example.com>",
  2392. )
  2393. self.assertEqual(
  2394. "tryme-1-g{}".format(sha[:7].decode("ascii")),
  2395. porcelain.describe(self.repo.path),
  2396. )
  2397. class PathToTreeTests(PorcelainTestCase):
  2398. def setUp(self):
  2399. super(PathToTreeTests, self).setUp()
  2400. self.fp = os.path.join(self.test_dir, "bar")
  2401. with open(self.fp, "w") as f:
  2402. f.write("something")
  2403. oldcwd = os.getcwd()
  2404. self.addCleanup(os.chdir, oldcwd)
  2405. os.chdir(self.test_dir)
  2406. def test_path_to_tree_path_base(self):
  2407. self.assertEqual(b"bar", porcelain.path_to_tree_path(self.test_dir, self.fp))
  2408. self.assertEqual(b"bar", porcelain.path_to_tree_path(".", "./bar"))
  2409. self.assertEqual(b"bar", porcelain.path_to_tree_path(".", "bar"))
  2410. cwd = os.getcwd()
  2411. self.assertEqual(
  2412. b"bar", porcelain.path_to_tree_path(".", os.path.join(cwd, "bar"))
  2413. )
  2414. self.assertEqual(b"bar", porcelain.path_to_tree_path(cwd, "bar"))
  2415. def test_path_to_tree_path_syntax(self):
  2416. self.assertEqual(b"bar", porcelain.path_to_tree_path(".", "./bar"))
  2417. def test_path_to_tree_path_error(self):
  2418. with self.assertRaises(ValueError):
  2419. with tempfile.TemporaryDirectory() as od:
  2420. porcelain.path_to_tree_path(od, self.fp)
  2421. def test_path_to_tree_path_rel(self):
  2422. cwd = os.getcwd()
  2423. os.mkdir(os.path.join(self.repo.path, "foo"))
  2424. os.mkdir(os.path.join(self.repo.path, "foo/bar"))
  2425. try:
  2426. os.chdir(os.path.join(self.repo.path, "foo/bar"))
  2427. with open("baz", "w") as f:
  2428. f.write("contents")
  2429. self.assertEqual(b"bar/baz", porcelain.path_to_tree_path("..", "baz"))
  2430. self.assertEqual(
  2431. b"bar/baz",
  2432. porcelain.path_to_tree_path(
  2433. os.path.join(os.getcwd(), ".."),
  2434. os.path.join(os.getcwd(), "baz"),
  2435. ),
  2436. )
  2437. self.assertEqual(
  2438. b"bar/baz",
  2439. porcelain.path_to_tree_path("..", os.path.join(os.getcwd(), "baz")),
  2440. )
  2441. self.assertEqual(
  2442. b"bar/baz",
  2443. porcelain.path_to_tree_path(os.path.join(os.getcwd(), ".."), "baz"),
  2444. )
  2445. finally:
  2446. os.chdir(cwd)
  2447. class GetObjectByPathTests(PorcelainTestCase):
  2448. def test_simple(self):
  2449. fullpath = os.path.join(self.repo.path, "foo")
  2450. with open(fullpath, "w") as f:
  2451. f.write("BAR")
  2452. porcelain.add(repo=self.repo.path, paths=[fullpath])
  2453. porcelain.commit(
  2454. self.repo.path,
  2455. message=b"Some message",
  2456. author=b"Joe <joe@example.com>",
  2457. committer=b"Bob <bob@example.com>",
  2458. )
  2459. self.assertEqual(b"BAR", porcelain.get_object_by_path(self.repo, "foo").data)
  2460. self.assertEqual(b"BAR", porcelain.get_object_by_path(self.repo, b"foo").data)
  2461. def test_encoding(self):
  2462. fullpath = os.path.join(self.repo.path, "foo")
  2463. with open(fullpath, "w") as f:
  2464. f.write("BAR")
  2465. porcelain.add(repo=self.repo.path, paths=[fullpath])
  2466. porcelain.commit(
  2467. self.repo.path,
  2468. message=b"Some message",
  2469. author=b"Joe <joe@example.com>",
  2470. committer=b"Bob <bob@example.com>",
  2471. encoding=b"utf-8",
  2472. )
  2473. self.assertEqual(b"BAR", porcelain.get_object_by_path(self.repo, "foo").data)
  2474. self.assertEqual(b"BAR", porcelain.get_object_by_path(self.repo, b"foo").data)
  2475. def test_missing(self):
  2476. self.assertRaises(KeyError, porcelain.get_object_by_path, self.repo, "foo")
  2477. class WriteTreeTests(PorcelainTestCase):
  2478. def test_simple(self):
  2479. fullpath = os.path.join(self.repo.path, "foo")
  2480. with open(fullpath, "w") as f:
  2481. f.write("BAR")
  2482. porcelain.add(repo=self.repo.path, paths=[fullpath])
  2483. self.assertEqual(
  2484. b"d2092c8a9f311f0311083bf8d177f2ca0ab5b241",
  2485. porcelain.write_tree(self.repo),
  2486. )
  2487. class ActiveBranchTests(PorcelainTestCase):
  2488. def test_simple(self):
  2489. self.assertEqual(b"master", porcelain.active_branch(self.repo))
  2490. class FindUniqueAbbrevTests(PorcelainTestCase):
  2491. def test_simple(self):
  2492. c1, c2, c3 = build_commit_graph(
  2493. self.repo.object_store, [[1], [2, 1], [3, 1, 2]]
  2494. )
  2495. self.repo.refs[b"HEAD"] = c3.id
  2496. self.assertEqual(
  2497. c1.id.decode('ascii')[:7],
  2498. porcelain.find_unique_abbrev(self.repo.object_store, c1.id))