Return continuation even if no chat data

This commit is contained in:
taizan-hokuto
2020-02-16 23:31:25 +09:00
parent d8c1c4491d
commit eae485b914
4 changed files with 34 additions and 30 deletions

View File

@@ -66,7 +66,7 @@ def test_duplicate_head():
[4] , [5] -> append [4]
append [5]
result : [0] , [3] , [5]
result : [2] , [4] , [5]
"""
#chat data offsets are ignored.

View File

@@ -23,6 +23,8 @@ def test_split_0():
"""
Normal case
~~~~~~ before ~~~~~~
@parent_block (# = already downloaded)
first last end
@@ -31,18 +33,21 @@ def test_split_0():
@child_block
first = last = 0 end=parent_end
---------------------------------------------------|
first = last = 0 end (=parent_end)
| |
@fetched patch
|-- patch --|
|
|
V
|
|
V
~~~~~~ after ~~~~~~
@parent_block
first last end (after split)
@@ -83,20 +88,20 @@ def test_split_1():
~~~~~~ before ~~~~~~
patch.first
first | last end
first | last end
|####################|#####|---------------------|
^
@child_block
first = last = 0 end=parent_end
---------------------------------------------------|
first = last = 0 end (=parent_end)
| |
@fetched patch
|-- patch --|
|
|
V
|
|
V
~~~~~~ after ~~~~~~
@@ -135,8 +140,8 @@ def test_split_2():
|########------------------------------|
@child_block
first = last = 0 end=parent_end
-----------------------------------------|
first = last = 0 end (=parent_end)
| |
continuation:succeed from patch
@@ -144,9 +149,9 @@ def test_split_2():
|-------- patch --------|
|
|
V
|
|
V
~~~~~~ after ~~~~~~
@@ -196,23 +201,23 @@ def test_split_none():
|####################|###################|-------|
^
@child_block
first = last = 0 end=parent_end
---------------------------------------------------|
first = last = 0 end (=parent_end)
| |
@fetched patch
|-- patch --|
patch.last < parent_block.last .
|
|
V
|
|
V
~~~~~~ after ~~~~~~
@parent_block
first last end (before split)
|########################################|-------|
.
@child_block
............ -> discard all data.