Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
duniter
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
nodes
typescript
duniter
Commits
a99a443e
Commit
a99a443e
authored
1 year ago
by
Cédric Moreau
Browse files
Options
Downloads
Patches
Plain Diff
fix(1447): show that the issue is about indexForTrimming only
parent
67b05f1a
No related branches found
No related tags found
No related merge requests found
Pipeline
#32332
failed
1 year ago
Stage: tests
Stage: package
Stage: integration
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
app/lib/dal/indexDAL/leveldb/LevelDBSindex.ts
+10
-1
10 additions, 1 deletion
app/lib/dal/indexDAL/leveldb/LevelDBSindex.ts
test/dal/triming-dal.ts
+10
-8
10 additions, 8 deletions
test/dal/triming-dal.ts
with
20 additions
and
9 deletions
app/lib/dal/indexDAL/leveldb/LevelDBSindex.ts
+
10
−
1
View file @
a99a443e
...
...
@@ -345,7 +345,16 @@ export class LevelDBSindex extends LevelDBTable<SindexEntry>
* Allow to get internal index, for unit test (see test triming-dal.ts)
*/
getInternalIndexes
():
LevelDBTable
<
any
>
[]
{
return
[
this
.
indexForTrimming
,
this
.
indexForConditions
,
this
.
indexForConditions
,
this
.
indexOfComplexeConditionForPubkeys
];
return
[
this
.
indexForTrimming
,
this
.
indexForConditions
,
this
.
indexForConsumed
,
this
.
indexOfComplexeConditionForPubkeys
];
}
getIndexForTrimming
():
LevelDBTable
<
any
>
{
return
this
.
indexForTrimming
}
getIndexForConditions
():
LevelDBTable
<
any
>
{
return
this
.
indexForConditions
}
getIndexForConsumed
():
LevelDBTable
<
any
>
{
return
this
.
indexForConsumed
}
private
async
trimConditions
(
condition
:
string
,
id
:
string
)
{
...
...
This diff is collapsed.
Click to expand it.
test/dal/triming-dal.ts
+
10
−
8
View file @
a99a443e
...
...
@@ -120,8 +120,8 @@ describe("Triming", function(){
await
dal
.
sindexDAL
.
insertBatch
([
{
op
:
'
CREATE
'
,
identifier
:
'
SOURCE_1
'
,
pos
:
4
,
written_on
:
'
126-H
'
,
writtenOn
:
126
,
written_time
:
2000
,
consumed
:
false
,
conditions
:
'
COND(SOURCE_1)
'
},
{
op
:
'
UPDATE
'
,
identifier
:
'
SOURCE_1
'
,
pos
:
4
,
written_on
:
'
139-H
'
,
writtenOn
:
139
,
written_time
:
4500
,
consumed
:
true
,
conditions
:
'
COND(SOURCE_1)
'
},
{
op
:
'
CREATE
'
,
identifier
:
'
SOURCE_2
'
,
pos
:
4
,
written_on
:
'
12
7
-H
'
,
writtenOn
:
12
7
,
written_time
:
2500
,
consumed
:
false
,
conditions
:
'
COND(SOURCE_2)
'
},
{
op
:
'
CREATE
'
,
identifier
:
'
SOURCE_3
'
,
pos
:
4
,
written_on
:
'
12
7
-H
'
,
writtenOn
:
12
7
,
written_time
:
2500
,
consumed
:
false
,
conditions
:
'
SIG(PUB_1)
'
}
{
op
:
'
CREATE
'
,
identifier
:
'
SOURCE_2
'
,
pos
:
4
,
written_on
:
'
12
6
-H
'
,
writtenOn
:
12
6
,
written_time
:
2500
,
consumed
:
false
,
conditions
:
'
COND(SOURCE_2)
'
},
{
op
:
'
CREATE
'
,
identifier
:
'
SOURCE_3
'
,
pos
:
4
,
written_on
:
'
12
6
-H
'
,
writtenOn
:
12
6
,
written_time
:
2500
,
consumed
:
false
,
conditions
:
'
SIG(PUB_1)
'
}
]
as
any
);
(
await
dal
.
sindexDAL
.
findByIdentifier
(
'
SOURCE_1
'
)).
should
.
have
.
length
(
2
);
(
await
dal
.
sindexDAL
.
getAvailableForConditions
(
'
COND(SOURCE_2)
'
)).
should
.
have
.
length
(
1
);
...
...
@@ -141,13 +141,15 @@ describe("Triming", function(){
(
await
dal
.
sindexDAL
.
findByPos
(
4
)).
should
.
have
.
length
(
2
);
// Check internal index
should
.
not
.
exist
(
await
sindexDAL
.
getIndexForConditions
().
getOrNull
(
"
COND(SOURCE_1)
"
));
// The only source at this condition was trimmed
should
.
not
.
exist
(
await
sindexDAL
.
getIndexForConsumed
().
getOrNull
(
"
0000000139
"
));
// The only consumption at this block was trimmed
let
entriesAt0000000126
=
await
sindexDAL
.
getIndexForTrimming
().
getOrNull
(
"
0000000126
"
);
// FIXME another issue here
for
(
let
index
of
sindexDAL
.
getInternalIndexes
())
{
const
keys
=
await
index
.
findAllKeys
();
keys
.
should
.
not
.
containEql
(
"
COND(SOURCE_1)
"
);
keys
.
should
.
not
.
containEql
(
"
0000000126
"
);
keys
.
should
.
not
.
containEql
(
"
0000000139
"
);
}
entriesAt0000000126
.
should
.
not
.
containEql
(
'
SOURCE_1-0000000004
'
);
// This CREATE entry should have been trimmed
let
entriesAt0000000139
=
await
sindexDAL
.
getIndexForTrimming
().
getOrNull
(
"
0000000139
"
);
should
.
not
.
exist
(
entriesAt0000000139
);
// Now we consume all sources
await
dal
.
sindexDAL
.
insertBatch
([
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment