Closed Bug 1557551 Opened 5 years ago Closed 4 years ago

Disqualify invalid items in the bookmarks mirror from deduping

Categories

(Firefox :: Sync, enhancement, P3)

enhancement

Tracking

()

RESOLVED FIXED
Firefox 77
Tracking Status
firefox77 --- fixed

People

(Reporter: lina, Assigned: gaurijove, Mentored)

References

(Blocks 1 open bug)

Details

(Keywords: good-first-bug)

Attachments

(1 file)

fetch_new_remote_contents currently considers all new items, even ones that aren't valid. Including them isn't very useful—they don't have valid URLs, so we can't do content matching!

fetch_new_remote_contents isn't a thing anymore, but we can still add an item.validity != Validity::Valid condition to the ifs here. This is a great first Rust bug!

Mentor: lina
Keywords: good-first-bug

Could I take this bug, please?

Nevermind. I completed a different first-bug. This one should be left to someone else to learn the workflow.

(In reply to :Lina Cambridge from comment #1)

fetch_new_remote_contents isn't a thing anymore, but we can still add an item.validity != Validity::Valid condition to the ifs here. This is a great first Rust bug!

First timer here. Is this still a valid bug? The function signature has changed to fn local_row_to_item(&self, row: &Row<'_>) -> Result<Item> and no longer returns a Item & Content tuple.

Flags: needinfo?(lina)

Need a first one. Is this available?

(In reply to rushab.kumar from comment #4)

(In reply to :Lina Cambridge from comment #1)

fetch_new_remote_contents isn't a thing anymore, but we can still add an item.validity != Validity::Valid condition to the ifs here. This is a great first Rust bug!

First timer here. Is this still a valid bug? The function signature has changed to fn local_row_to_item(&self, row: &Row<'_>) -> Result<Item> and no longer returns a Item & Content tuple.

Sorry for the delay - I think this is still a valid bug but that function does still take the tuple, so what Lina described still sounds OK. Ideally this would include a test, but it's not immediately clear yet how we would do that - let's just start with the described change and see what Lina thinks.

(I'm giving rushab.kumar the first option here because, sadly, we ignored them for a couple of months. If they don't get back in a week or so, I'll offer it to huzefa.jambughoda. Regardless, we don't actually assign a bug until a patch is first uploaded...)

Flags: needinfo?(lina)

If nobody is working on this bug, may i submit a patch for it?

(In reply to Jayati Shrivastava from comment #7)

If nobody is working on this bug, may i submit a patch for it?

Please do!

I'm so sorry for the delay replying, this bug completely slipped off my radar! 😭

The two ifs we'll need to change are these. We'll want to add a condition to check if the validity is Validity::Replace, and, if it is, return None for the content.

We'll also want to add a test, to this file.

The way we'd test this is to add bookmarks locally and remotely, then change them to be invalid. For local bookmarks, we can do it like this, changing the URL to something invalid directly in moz_places. For remote bookmarks in the mirror, we can insert a valid bookmark, bookmarkBBB1 locally and bookmarkBBB2 remotely, then use this query:

await buf.db.execute(
  `UPDATE items SET
     validity = :validity
   WHERE guid = :guid`,
  { validity: Ci.mozISyncedBookmarksMerger.VALIDITY_REPLACE,
    guid: "bookmarkBBB2" });

...To flag B2 as invalid—so it should not dedupe to B1.

We need to make those changes after inserting local (via PlacesUtils.bookmarks.insertTree) and remote bookmarks (via storeRecords), but before we call await buf.apply(). Please have a look at some of the other tests in that file (you can copy-paste this one as a starting point), and let us know if you'd like help! We can always land the test in a follow-up bug 😊

Thanks so much for taking this on!

Assignee: nobody → gaurijove
Status: NEW → ASSIGNED
Pushed by kcambridge@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/e5474686074d
Disqualify invalid items in the bookmarks mirror from deduping. r=lina
Status: ASSIGNED → RESOLVED
Closed: 4 years ago
Resolution: --- → FIXED
Target Milestone: --- → Firefox 77
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: