Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: fieldKeyParser: make clearer assertions about url manipulation #1291

Open
wants to merge 7 commits into
base: master
Choose a base branch
from

Conversation

alxndrsn
Copy link
Contributor

No description provided.

@alxndrsn
Copy link
Contributor Author

alxndrsn commented Nov 11, 2024

It looks like removal of the /v1 prefix is applied inconsistently.

@alxndrsn alxndrsn changed the title test/middleware: document current url/originalUrl manipulation test: fieldKeyParser: make clearer assertions about url manipulation Nov 13, 2024
@alxndrsn alxndrsn marked this pull request as ready for review November 13, 2024 08:23
Copy link
Member

@matthew-white matthew-white left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Instead of having createRequest() automatically specify originalUrl by prepending /v1 to url, could we just have individual tests specify originalUrl when they need to? I only see three sets of tests that specify url at all:

  • versionParser()
  • fieldKeyParser()
  • odataPreprocessor()

I don't think versionParser() needs access to originalUrl. For the tests of odataPreprocessor(), I don't think it makes a ton of sense to prepend /v1 to url: the urls are things like '/odata.svc?$format=json'.

What do you think about adding a utility function just for the tests of fieldKeyParser()? Those seem to be the only ones that actually use originalUrl. I'm thinking of something similar to createPreVersionParserRequest():

const createFieldKeyParserRequest = ({ url, ...props }) =>
  if (originalUrl) throw new Error('Should not specify originalUrl');
  return createRequest({ url, originalUrl: `/v1${url}`, ...props });
};

Maybe we could come back to the idea of automatically specifying originalUrl if/when we have more tests that need that.

@alxndrsn
Copy link
Contributor Author

could we just have individual tests specify originalUrl when they need to?

We could, but it's allows people to forget to do specify it.

For the tests of odataPreprocessor(), I don't think it makes a ton of sense to prepend /v1 to url: the urls are things like '/odata.svc?$format=json'.

It's true, but to understand that these tests do not need originalUrl, you need to check what each preprocessor is doing internally. And you'd need to reconfirm that when modifying preprocessor code. The approach in this PR allows writing and testing of preprocessors in an environment that more closely matches reality by default, rather than requiring explicit opt-in.

@matthew-white
Copy link
Member

I see what you're saying, but I think there's potential for confusion if our version of createRequest() started to diverge more so from node-mocks-http. When I was first reviewing this PR, I didn't notice at first that createRequest() had been modified, and I spent a few minutes scratching my head as to how it was possible that /v1 was being added to originalUrl. I thought I was misunderstanding something about the preprocessors.

We don't have that many preprocessors, and there's only one preprocessor where there's a problem with the tests. I think it'd be better to wait to modify createRequest() in this way until it's clearer that that's what we'd want for future preprocessors. If we were to add another preprocessor before fieldKeyParser(), then we wouldn't want createRequest() to prepend /v1 to originalUrl.

Just to throw out another idea, what do you think about wrapping the request in a proxy that gates the originalUrl property? If a preprocessor tries to access originalUrl, but no originalUrl was specified to createRequest(), then the proxy could throw an error. I think that would avoid possible confusion while still keeping an eye on originalUrl. I'm thinking of something like:

const guardOriginalUrl = {
  get: (request, prop) => {
    if (prop === 'originalUrl')
      throw new Error('no originalUrl was passed to createRequest()');
    return request[prop];
  },
  set: (request, prop, value) => {
    request[prop] = value;
    return true;
  }
};

const createRequest = options => {
  // ...
  const request = wrapped.createRequest({ ...options, query: qs.parse(search.substr(1)) });
  return options.originalUrl != null ? request : new Proxy(request, guardOriginalUrl);
};

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.

2 participants