Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.11 KB | None | 0 0
  1. const panelist1 = 'e20e2642-a78f-40fb-b455-a8c48b522ea4';
  2.  
  3. // 3 qualification attempts approved: ['mobileTOL', 'desktopTOL', 'desktopApp'] (SOURCE OF TRUTH)
  4. const panelist1QualificationAttempts = {
  5. "_id" : "e20e2642-a78f-40fb-b455-a8c48b522ea4",
  6. "qualifications" : {
  7. "mobileTOL" : "approved",
  8. "desktopTOL" : "approved",
  9. "desktopApp" : "approved"
  10. }
  11. };
  12.  
  13. // 2 qualifications as a panelist: ['mobileTOL', 'desktopTOL'], missing 1: 'desktopApp'
  14. let panelistQualifications = {
  15. "_id" : "e20e2642-a78f-40fb-b455-a8c48b522ea4",
  16. "qualifications" : [
  17. "mobileTOL",
  18. "desktopTOL"
  19. ]
  20. };
  21.  
  22. // 2 qualifications in demographics: ['mobileTOL', 'desktopTOL'], missing 1: 'desktopApp'
  23. let panelistDemographics = {
  24. "panelistId" : "e20e2642-a78f-40fb-b455-a8c48b522ea4",
  25. "__meta__" : {
  26. "panelist" : {
  27. "qualifications" : [
  28. {
  29. "grantor" : "kadachi@userzoom.com",
  30. "key" : "desktopTOL"
  31. },
  32. {
  33. "key" : "mobileTOL",
  34. "grantor" : "sdada@userzoom.com"
  35. }
  36. ]
  37. }
  38. }
  39. };
  40.  
  41. // 1 qualification in profile: 'mobileTOL', missing 2: ['desktopApp', 'desktopTOL']
  42. let panelistProfile = {
  43. "_id" : "d9d5f944-3e1d-4d97-acf1-05858cb8545f",
  44. "panelistId" : "e20e2642-a78f-40fb-b455-a8c48b522ea4",
  45. "qualifications" : [
  46. {
  47. "key" : "mobileTOL",
  48. "status" : "approved"
  49. }
  50. ]
  51. };
  52.  
  53.  
  54. /***** RUN MIGRATION *****/
  55.  
  56.  
  57. // All 3 qualifications present as a panelist present (added: 'desktopApp')
  58. panelistQualifications = {
  59. "_id" : "e20e2642-a78f-40fb-b455-a8c48b522ea4",
  60. "qualifications" : [
  61. "desktopApp",
  62. "mobileTOL",
  63. "desktopTOL"
  64. ]
  65. };
  66.  
  67. // All 3 qualifications present as a panelist present (added: 'desktopApp')
  68. panelistDemographics = {
  69. "panelistId" : "e20e2642-a78f-40fb-b455-a8c48b522ea4",
  70. "__meta__" : {
  71. "panelist" : {
  72. "qualifications" : [
  73. {
  74. "grantor" : "kadachi@userzoom.com",
  75. "key" : "desktopTOL"
  76. },
  77. {
  78. "key" : "mobileTOL",
  79. "grantor" : "sdada@userzoom.com"
  80. },
  81. {
  82. "key" : "desktopApp",
  83. "reason" : "syncQualifications",
  84. "grantor" : "dbMigration",
  85. "createdAt" : "2019-06-06T12:40:43.794Z",
  86. "updatedAt" : "2019-06-06T12:40:43.794Z"
  87. }
  88. ]
  89. }
  90. }
  91. };
  92.  
  93. // All 3 qualifications present in the profile (added both: ['desktopApp', 'desktopTOL'])
  94. panelistProfile = {
  95. "_id" : "d9d5f944-3e1d-4d97-acf1-05858cb8545f",
  96. "panelistId" : "e20e2642-a78f-40fb-b455-a8c48b522ea4",
  97. "qualifications" : [
  98. {
  99. "key" : "mobileTOL",
  100. "status" : "approved"
  101. },
  102. {
  103. "key" : "desktopTOL",
  104. "status" : "approved"
  105. },
  106. {
  107. "key" : "desktopApp",
  108. "status" : "approved"
  109. }
  110. ]
  111. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement