Skip to content

Conversation

@sharptrip
Copy link
Collaborator

!DO NOT MERGE!

This is just a basis to rebase #1 on top of it.

It introduces:

  • some history on development of the schema converter
  • new package for "PropertyDDS => SharedTree" migration / interop

@sharptrip sharptrip requested a review from milanro February 17, 2023 13:52
@sharptrip
Copy link
Collaborator Author

Applied in #3

@sharptrip sharptrip closed this Mar 2, 2023
@sharptrip sharptrip deleted the schema-converter-alpha branch March 2, 2023 07:30
milanro pushed a commit that referenced this pull request Mar 29, 2023
## Description
Currently tinylicious fails to run sample scenarios in the [Share Live
Repo](https://github.com/microsoft/live-share-sdk)
2 interesting commits: 
a) [Update deps (minor) on server release group in tinylicious (microsoft#14586)
· microsoft/FluidFramework@12b3f4c
(github.com)](microsoft@12b3f4c#diff-18fce4d66a0b908f502bc635b1c1377557fd7ec4f8d9df8dcaa4d9c261158ca9))

Throws when  getTenantGitManager is invoked. 

2) [Separate api for getting tenant gitManager. (microsoft#14290) ·
microsoft/FluidFramework@d368f26
(github.com)](microsoft@d368f26#diff-deeaa88a2f939b81094f7412e1482709a59c4c47850a5c379c92aef0b78d70d5))
Moved the call when creating the document from getTenant to
getTenantGitManager and I'm not sure if it applies to tinylicious but it
is consumed by it.

This PR is trying to revert the current behavior by keeping changes #2
and not throwing on #1

Repro steps: 
a) Clone https://github.com/microsoft/live-share-sdk

b) Follow instructions from the Readme to install  (I had to also
install vite as it was failing without it)

c) Simply try to run one of the samples (I'm using
samples\javascript\03.live-canvas-demo\) http://localhost:3000/
dstanesc pushed a commit that referenced this pull request May 13, 2024
…re, runtime, Loader in versioned tests (microsoft#20650)

An extraction from microsoft#20621

Reason for changes
These tests explode when I change interface between DDS & DataStore

Description
These tests are not written correctly. They mix arbitrary version of DDS with the latest version of FluidDataStoreRuntime (through TestFluidObjectFactory). We never supported such mixes - version of DDS has to match version or data store!

Using matching TestFluidObjectFactory is easy, but then we start running into somewhat similar problem of mixing FluidDataStoreRuntime & ContainerRuntime. We support only N/N-1 mixes here, and nothing more. So we have to use the version provided by test framework, thus you see some dance above CodeLoader to get right factory.

And while we are at it, it would be great for the test to use Loader version provided by test framework, not latest version.
This breaks for old versions as the way test is written it works only for latest structure of the document. Previously test framework was running a ton of combos, but most of them were actually the same, as even when it was supplied different versions of loader, we were using only latest version of loader. So, the right fix here - use loader version provided by framework but skip all the tests that use old version of the loader, thus getting same result, but with fewer iterations (and faster tests).

As part of fixing it, use proper back-compat compatible ways to get to entry points at loader & runtime layers.
dstanesc pushed a commit that referenced this pull request May 13, 2024
## Description

This makes 3 changes to Tree.is:
1. calling Tree.is(node, SchemaNotUsedInTreeSchema) is no longer an
error. This undocumented edge case could have been problematic, and is
inconsistent since it would not fire if node was not a TreeNode.
2. Tree.is now takes in ImplicitAllowedTypes, making cases like
Tree.is(x, [schema.number, schema.string]) valid. THis is more
performant and more concise then doing two separate checks and ORing
them together. This also allows checking a node against an
ImplicitAllowedTypes pulled from a FieldSchema which could be handy for
some generic code.
3. The implementation of Tree.schema and Tree.is have been rewritten to
not rely on flex-schema as much, and fast path non-TreeNode inputs. This
should make it more maintainable and more performant.


Interestingly `#2` above is the only case that couldn't be covered by
`instanceof` (assuming TypeScript 5.3): we could make `instanceof` do
all narrowing currently done with Tree.is, except for this new case. The
presence of this case thus seems to motivate keeping `Tree.is` if for no
reason other than it can support this additional pattern which
`instancof` cannot.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant