How to test Mailchimp API in route with Chai and Node.js?How do I test for an empty JavaScript object?How do I debug Node.js applications?How do I get started with Node.jsHow do I pass command line arguments to a Node.js program?How to decide when to use Node.js?How to exit in Node.jsWhat is the purpose of Node.js module.exports and how do you use it?How to parse JSON using Node.js?How do I completely uninstall Node.js, and reinstall from beginning (Mac OS X)chai test array equality doesn't work as expected

Speaker impedance: rewiring four 8 Ω speakers for use with 8 Ω amp output

Does the problem of P vs NP come under the category of Operational Research?

How to avoid a lengthy conversation with someone from the neighborhood I don't share interests with

Different answers of calculations in LuaLaTeX on local computer, lua compiler and on overleaf

What is the most 'environmentally friendly' way to learn to fly?

On the expression "sun-down"

Why wasn't interlaced CRT scanning done back and forth?

Phase portrait of a system of differential equations

Subtle ways to render a planet uninhabitable

how to change ^L code in many files in ubuntu?

Is there a general term for the items in a directory?

How was the cosmonaut of the Soviet moon mission supposed to get back in the return vehicle?

Is law enforcement responsible for damages made by a search warrant?

Why did the United States not resort to nuclear weapons in Vietnam?

Why do my fried eggs start browning very fast?

Lower bound for the number of lattice points on high dimensional spheres

How to win an all out war against ants

Difference between "jail" and "prison" in German

How long should I wait to plug in my refrigerator after unplugging it?

Is this popular optical illusion made of a grey-scale image with coloured lines?

How do people drown while wearing a life jacket?

Can an unintentional murderer leave Ir Miklat for Shalosh Regalim?

How do I safety check that there is no light in Darkroom / Darkbag?

Feedback diagram



How to test Mailchimp API in route with Chai and Node.js?


How do I test for an empty JavaScript object?How do I debug Node.js applications?How do I get started with Node.jsHow do I pass command line arguments to a Node.js program?How to decide when to use Node.js?How to exit in Node.jsWhat is the purpose of Node.js module.exports and how do you use it?How to parse JSON using Node.js?How do I completely uninstall Node.js, and reinstall from beginning (Mac OS X)chai test array equality doesn't work as expected






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I have created a mailing list that sends data to MailChimp. I am wanting to create a small unit or integration test to validate that it is working correctly. I have created a POST route that gets the first name, last name, company and email address of the user. I also have a helper file that contains a mock user and function. The problem is that I am not sure how to test the route. The test is passing but isn't redirecting to the correct route.



signup.js



app.post('/signup', (req, res) => 
const
firstName,
lastName,
company,
email
= req.body

const data =
members: [
email_address: req.sanitize(email),
status: 'subscribed',
merge_fields:
FNAME: req.sanitize(firstName),
LNAME: req.sanitize(lastName),
COMPANY: req.sanitize(company)

]


const jsonData = JSON.stringify(data)

const options =
url: 'https://us20.api.mailchimp.com/3.0/lists/539c805f12',
method: 'POST',
headers:
Authorization: `auth $MAILCHIMP_API_KEY-us20`
,
body: jsonData


request(options, (err, response, body) =>
if (err)
res.redirect('/')
else
if (response.statusCode === 200)
req.flash('secondary', 'Thank you for signing up.')
res.redirect('/success')
else
res.redirect('/')


)
)


helper.js



module.exports.mockUser = 
firstName: 'John',
lastName: 'Doe',
company: 'Entivik',
email: 'jdoe@outlook.com'


module.exports.signupUser = async (agent, firstName, lastName, company, email) => agent
.post('/signup')
.set('content-type', 'application/x-www-form-urlencoded')
.send(
firstName,
lastName,
company,
email
)


test.spec.js



const chai = require('chai')
const chaiHttp = require('chai-http')
const should = chai.should()
const expect = chai.expect
const app = require('../../app')
const helper = require('./helper')

chai.use(chaiHttp)

describe('test submitted mailing list form', () =>
it('should return valid form input', async () =>
const agent = chai.request.agent(app)
await helper.signupUser(agent, helper.mockUser.firstName, helper.mockUser.lastName, helper.mockUser.company)
const res = await agent.get('/')
expect(res).to.have.status(200)
)
)









share|improve this question






























    0















    I have created a mailing list that sends data to MailChimp. I am wanting to create a small unit or integration test to validate that it is working correctly. I have created a POST route that gets the first name, last name, company and email address of the user. I also have a helper file that contains a mock user and function. The problem is that I am not sure how to test the route. The test is passing but isn't redirecting to the correct route.



    signup.js



    app.post('/signup', (req, res) => 
    const
    firstName,
    lastName,
    company,
    email
    = req.body

    const data =
    members: [
    email_address: req.sanitize(email),
    status: 'subscribed',
    merge_fields:
    FNAME: req.sanitize(firstName),
    LNAME: req.sanitize(lastName),
    COMPANY: req.sanitize(company)

    ]


    const jsonData = JSON.stringify(data)

    const options =
    url: 'https://us20.api.mailchimp.com/3.0/lists/539c805f12',
    method: 'POST',
    headers:
    Authorization: `auth $MAILCHIMP_API_KEY-us20`
    ,
    body: jsonData


    request(options, (err, response, body) =>
    if (err)
    res.redirect('/')
    else
    if (response.statusCode === 200)
    req.flash('secondary', 'Thank you for signing up.')
    res.redirect('/success')
    else
    res.redirect('/')


    )
    )


    helper.js



    module.exports.mockUser = 
    firstName: 'John',
    lastName: 'Doe',
    company: 'Entivik',
    email: 'jdoe@outlook.com'


    module.exports.signupUser = async (agent, firstName, lastName, company, email) => agent
    .post('/signup')
    .set('content-type', 'application/x-www-form-urlencoded')
    .send(
    firstName,
    lastName,
    company,
    email
    )


    test.spec.js



    const chai = require('chai')
    const chaiHttp = require('chai-http')
    const should = chai.should()
    const expect = chai.expect
    const app = require('../../app')
    const helper = require('./helper')

    chai.use(chaiHttp)

    describe('test submitted mailing list form', () =>
    it('should return valid form input', async () =>
    const agent = chai.request.agent(app)
    await helper.signupUser(agent, helper.mockUser.firstName, helper.mockUser.lastName, helper.mockUser.company)
    const res = await agent.get('/')
    expect(res).to.have.status(200)
    )
    )









    share|improve this question


























      0












      0








      0








      I have created a mailing list that sends data to MailChimp. I am wanting to create a small unit or integration test to validate that it is working correctly. I have created a POST route that gets the first name, last name, company and email address of the user. I also have a helper file that contains a mock user and function. The problem is that I am not sure how to test the route. The test is passing but isn't redirecting to the correct route.



      signup.js



      app.post('/signup', (req, res) => 
      const
      firstName,
      lastName,
      company,
      email
      = req.body

      const data =
      members: [
      email_address: req.sanitize(email),
      status: 'subscribed',
      merge_fields:
      FNAME: req.sanitize(firstName),
      LNAME: req.sanitize(lastName),
      COMPANY: req.sanitize(company)

      ]


      const jsonData = JSON.stringify(data)

      const options =
      url: 'https://us20.api.mailchimp.com/3.0/lists/539c805f12',
      method: 'POST',
      headers:
      Authorization: `auth $MAILCHIMP_API_KEY-us20`
      ,
      body: jsonData


      request(options, (err, response, body) =>
      if (err)
      res.redirect('/')
      else
      if (response.statusCode === 200)
      req.flash('secondary', 'Thank you for signing up.')
      res.redirect('/success')
      else
      res.redirect('/')


      )
      )


      helper.js



      module.exports.mockUser = 
      firstName: 'John',
      lastName: 'Doe',
      company: 'Entivik',
      email: 'jdoe@outlook.com'


      module.exports.signupUser = async (agent, firstName, lastName, company, email) => agent
      .post('/signup')
      .set('content-type', 'application/x-www-form-urlencoded')
      .send(
      firstName,
      lastName,
      company,
      email
      )


      test.spec.js



      const chai = require('chai')
      const chaiHttp = require('chai-http')
      const should = chai.should()
      const expect = chai.expect
      const app = require('../../app')
      const helper = require('./helper')

      chai.use(chaiHttp)

      describe('test submitted mailing list form', () =>
      it('should return valid form input', async () =>
      const agent = chai.request.agent(app)
      await helper.signupUser(agent, helper.mockUser.firstName, helper.mockUser.lastName, helper.mockUser.company)
      const res = await agent.get('/')
      expect(res).to.have.status(200)
      )
      )









      share|improve this question














      I have created a mailing list that sends data to MailChimp. I am wanting to create a small unit or integration test to validate that it is working correctly. I have created a POST route that gets the first name, last name, company and email address of the user. I also have a helper file that contains a mock user and function. The problem is that I am not sure how to test the route. The test is passing but isn't redirecting to the correct route.



      signup.js



      app.post('/signup', (req, res) => 
      const
      firstName,
      lastName,
      company,
      email
      = req.body

      const data =
      members: [
      email_address: req.sanitize(email),
      status: 'subscribed',
      merge_fields:
      FNAME: req.sanitize(firstName),
      LNAME: req.sanitize(lastName),
      COMPANY: req.sanitize(company)

      ]


      const jsonData = JSON.stringify(data)

      const options =
      url: 'https://us20.api.mailchimp.com/3.0/lists/539c805f12',
      method: 'POST',
      headers:
      Authorization: `auth $MAILCHIMP_API_KEY-us20`
      ,
      body: jsonData


      request(options, (err, response, body) =>
      if (err)
      res.redirect('/')
      else
      if (response.statusCode === 200)
      req.flash('secondary', 'Thank you for signing up.')
      res.redirect('/success')
      else
      res.redirect('/')


      )
      )


      helper.js



      module.exports.mockUser = 
      firstName: 'John',
      lastName: 'Doe',
      company: 'Entivik',
      email: 'jdoe@outlook.com'


      module.exports.signupUser = async (agent, firstName, lastName, company, email) => agent
      .post('/signup')
      .set('content-type', 'application/x-www-form-urlencoded')
      .send(
      firstName,
      lastName,
      company,
      email
      )


      test.spec.js



      const chai = require('chai')
      const chaiHttp = require('chai-http')
      const should = chai.should()
      const expect = chai.expect
      const app = require('../../app')
      const helper = require('./helper')

      chai.use(chaiHttp)

      describe('test submitted mailing list form', () =>
      it('should return valid form input', async () =>
      const agent = chai.request.agent(app)
      await helper.signupUser(agent, helper.mockUser.firstName, helper.mockUser.lastName, helper.mockUser.company)
      const res = await agent.get('/')
      expect(res).to.have.status(200)
      )
      )






      javascript node.js mocha mailchimp chai






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 27 at 1:32









      User123User123

      888 bronze badges




      888 bronze badges

























          0






          active

          oldest

          votes










          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55368505%2fhow-to-test-mailchimp-api-in-route-with-chai-and-node-js%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes




          Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.







          Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.



















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55368505%2fhow-to-test-mailchimp-api-in-route-with-chai-and-node-js%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

          Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

          Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript