Uploaded image for project: 'Core Server'
  1. Core Server
  2. SERVER-98822

Print queries and plans as valid JSON in jsfuzz tests

    • Type: Icon: Improvement Improvement
    • Resolution: Unresolved
    • Priority: Icon: Major - P3 Major - P3
    • None
    • Affects Version/s: None
    • Component/s: None
    • Query Optimization
    • None
    • None
    • None
    • None
    • None
    • None
    • None

      In SPM-3895 we've introduced additional 'attr' parameter to log printing and assertion functions that can take structured data and print it as valid JSON (without quote escaping and without NumberLong(1), etc.) Such JSON can be easily processed further with JSON tools such as jq or even VSCode.

      We can use this new parameter to improve jstestsfuzz output, especially for queries and plans that come too often into the logs on jstestfuzz errors. We need to look for some printing / logging / asserting in jstestfuzz framework

      print("Expected plan: " + tojson(queryPlan1) + "\n Actual plan:" + tojson(queryPlan2));
      

      and replace those with structured output (JSON), e.g.:

      jsTest.log.info("expected vs. actual query plans", {expected: queryPlan1, actual: queryPlan2});
      

            Assignee:
            Unassigned Unassigned
            Reporter:
            romans.kasperovics@mongodb.com Romans Kasperovics
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated:
              None
              None
              None
              None