I’m getting a piece length mismatch when running tests for Stage #ZH1, because the total sum of the length of all pieces is less than the length of the torrent file. Is this deliberate?
the total sum of the length of all pieces is less than the length of the torrent file. Is this deliberate?
Hey @MlkMahmud, it shouldn’t be the case. The total size of all pieces should match the file size exactly.
Would you mind sharing an example or more context? We’d love to take a closer look.
Hi @andy1li
Maybe there’s a problem with the way I’m parsing the “pieces” string, but from my observations, it’s only 20 bytes long (one piece), and this is what the rest of the info dict looks like:
{ "length": 79752, "name": "magnet2.gif", "piece length": 262144, "pieces": "U\ufffd؟\ufffdG{ĝ\ufffd\ufffd\ufffd\ufffd\ufffd@\ufffd\ufffd" }
You should be able to recreate this by running the “magnet_info” command on this magnet link “magnet2.gif.torrent: magnet:?xt=urn:btih:3f994a835e090238873498636b98a3e78d1c34ca&dn=magnet2.gif&tr=http%3A%2F%2Fbittorrent-test-tracker.codecrafters.io%2Fannounce”
@MlkMahmud Looks like you’ve resolved the issue. Do you happen to remember what was wrong? Would love to see if we can improve the tester / instructions.
I haven’t solved it I found a hacky way around it.
The problem is that the metadata for the torrent I linked to in my previous reply has a single piece, but the “piece length” value of the info dictionary is ‘26211’, which is less than the length of the file ‘79752’.
Ideally, if there is only one piece for the torrent, the length of the piece should be equal to the length of the file.
Hmm, it looks like the nominal piece length for our torrent files is 256 KB. In this edge case, the total file size is actually smaller than the nominal piece length.
In such cases, the torrent contains a single piece, and the actual piece length will be equal to the total file size, not the nominal piece length.
Let me know if you’d like help handling this edge case more cleanly instead of relying on a workaround!
Aw man, I could’ve sworn that the file lengh was greater than the nominal piece length. I need to increase my font size again.
Thank you for clearing this up. Am I correct in concluding that the test expects the nominal piece length, and not the actual value?
Haha, totally understandable. We’ve all been there!
And yes, the test in stage #zh1 expects the metadata to be printed as-is, hence the nominal piece length.