简体   繁体   English

如何在 mocha 中使用嵌套的 json 数据测试图像上传

[英]How to test image upload with nested json data in mocha

This is my test snippet.这是我的测试片段。 I need to pass additional data with nested json along with image.我需要使用嵌套的 json 以及图像传递其他数据。

` `

const email = 'test.email@gmail.com';
const contact = {
    firstName: 'John',
    lastName: 'Doe',
    phone: '9876543212'
  };

const response = await chai
    .request(server)
    .post('/profile')
    .set('Content-Type', 'multipart/form-data')
    .attach('logo', 'test/test-images/logo.png')
    .field({
      email,
      name: 'All Tech Solutions',
      phone: '9812345678',
      contact: contact
    });

  expect(response.body.status).to.equal('created');
  expect(response.body.profile.email).to.equal(email);
  expect(response.body.profile.logo).to.exist;
});

` `

It works with parameters without nested json but doesnot work with nested json.它适用于没有嵌套 json 的参数,但不适用于嵌套 json。 How can I pass nested json with logo?如何通过带有徽标的嵌套 json?

Take a look at the .field() method signature:看一下.field()方法签名:

field(name: string, val: MultipartValue): this;
field(fields: { [fieldName: string]: MultipartValue }): this;

And MultipartValue type:MultipartValue类型:

type MultipartValueSingle = Blob | Buffer | fs.ReadStream | string | boolean | number;

type MultipartValue = MultipartValueSingle | MultipartValueSingle[];

The value of the field should be Blob | Buffer | fs.ReadStream | string | boolean | number;该字段的值应为Blob | Buffer | fs.ReadStream | string | boolean | number; Blob | Buffer | fs.ReadStream | string | boolean | number; . . It doesn't accept objects.它不接受对象。

So you need to use JSON.stringify(contact) .所以你需要使用JSON.stringify(contact)

Eg例如

app.js : app.js

const express = require('express');
const multer = require('multer');
const path = require('path');
const upload = multer({ dest: path.resolve(__dirname, 'uploads/') });

const app = express();

app.post('/profile', upload.single('logo'), (req, res) => {
  console.log(req.body);
  console.log(req.file);
  const profile = { email: req.body.email, logo: true };
  res.json({ status: 'created', profile });
});

module.exports = app;

app.test.js : app.test.js

const server = require('./app');
const chai = require('chai');
const path = require('path');
const chaiHttp = require('chai-http');
chai.use(chaiHttp);

const expect = chai.expect;

describe('66273169', () => {
  it('should pass', async () => {
    const email = 'test.email@gmail.com';
    const contact = {
      firstName: 'John',
      lastName: 'Doe',
      phone: '9876543212',
    };

    const response = await chai
      .request(server)
      .post('/profile')
      .set('Content-Type', 'multipart/form-data')
      .attach('logo', path.resolve(__dirname, 'logo.png'))
      .field({
        email,
        name: 'All Tech Solutions',
        phone: '9812345678',
        contact: JSON.stringify(contact),
      });

    expect(response.body.status).to.equal('created');
    expect(response.body.profile.email).to.equal(email);
    expect(response.body.profile.logo).to.exist;
  });
});

test result:测试结果:

  66273169
[Object: null prototype] {
  email: 'test.email@gmail.com',
  name: 'All Tech Solutions',
  phone: '9812345678',
  contact: '{"firstName":"John","lastName":"Doe","phone":"9876543212"}'
}
{
  fieldname: 'logo',
  originalname: 'logo.png',
  encoding: '7bit',
  mimetype: 'image/png',
  destination: '/Users/dulin/workspace/github.com/mrdulin/expressjs-research/src/stackoverflow/66273169/uploads',
  filename: '7b82676df1678c79da43abcfbd9d411f',
  path: '/Users/dulin/workspace/github.com/mrdulin/expressjs-research/src/stackoverflow/66273169/uploads/7b82676df1678c79da43abcfbd9d411f',
  size: 0
}
    ✓ should pass


  1 passing (31ms)

----------|---------|----------|---------|---------|-------------------
File      | % Stmts | % Branch | % Funcs | % Lines | Uncovered Line #s 
----------|---------|----------|---------|---------|-------------------
All files |     100 |      100 |     100 |     100 |                   
 app.js   |     100 |      100 |     100 |     100 |                   
----------|---------|----------|---------|---------|-------------------

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM