Skip to content

Commit

Permalink
add test
Browse files Browse the repository at this point in the history
  • Loading branch information
lobsterkatie committed Nov 21, 2022
1 parent f1f2fe0 commit 1c9d654
Show file tree
Hide file tree
Showing 15 changed files with 1,357 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packages/nextjs/jest.config.js
@@ -1 +1,6 @@
module.exports = require('../../jest/jest.config.js');
const baseConfig = require('../../jest/jest.config.js');

module.exports = {
...baseConfig,
testPathIgnorePatterns: ['<rootDir>/test/buildProcess/'],
};
1 change: 1 addition & 0 deletions packages/nextjs/package.json
Expand Up @@ -66,6 +66,7 @@
"lint:prettier": "prettier --check \"{src,test,scripts}/**/*.ts\"",
"test": "run-s test:unit",
"test:all": "run-s test:unit test:integration",
"test:build": "yarn ts-node test/buildProcess/runTest.ts",
"test:unit": "jest",
"test:integration": "test/run-integration-tests.sh && yarn test:types",
"test:types": "cd test/types && yarn test",
Expand Down
39 changes: 39 additions & 0 deletions packages/nextjs/test/buildProcess/runTest.ts
@@ -0,0 +1,39 @@
/* eslint-disable no-console */
import * as childProcess from 'child_process';
import { sync as rimrafSync } from 'rimraf';

const TEST_APP_DIR = 'test/buildProcess/testApp';

/**
* Run the given shell command, piping the shell process's `stdin`, `stdout`, and `stderr` to that of the current
* process if this script is run with the `--debug` flag. Returns contents of `stdout`.
*/
function run(cmd: string, options?: childProcess.ExecSyncOptions): string {
return String(
childProcess.execSync(cmd, {
stdio: process.argv.includes('--debug') ? 'inherit' : 'ignore',
...options,
}),
);
}

// Note: We use a file dependency for the SDK, rather than linking it, because if it's linked, nextjs rolls the entire
// SDK and all of its dependencies into a bundle, making it impossible to tell (from the NFT file, at least) what's
// being included.
console.log('Installing dependencies...');
process.chdir(TEST_APP_DIR);
rimrafSync('node_modules');
run('yarn');

console.log('Building app...');
rimrafSync('.next');
run('yarn build');

console.log('App built. Running tests...');
process.chdir('..');
try {
// Even if this script hasn't been run with the `--debug` flag, we want the output of tests to be shown.
run('yarn jest tests', { stdio: 'inherit' });
} catch (err) {
console.log('\nNot all build process tests passed.');
}
36 changes: 36 additions & 0 deletions packages/nextjs/test/buildProcess/testApp/.gitignore
@@ -0,0 +1,36 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# next.js
/.next/
/out/

# production
/build

# misc
.DS_Store
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*

# local env files
.env*.local

# vercel
.vercel

# typescript
*.tsbuildinfo
next-env.d.ts
34 changes: 34 additions & 0 deletions packages/nextjs/test/buildProcess/testApp/README.md
@@ -0,0 +1,34 @@
This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).

## Getting Started

First, run the development server:

```bash
npm run dev
# or
yarn dev
```

Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.

You can start editing the page by modifying `pages/index.js`. The page auto-updates as you edit the file.

[API routes](https://nextjs.org/docs/api-routes/introduction) can be accessed on [http://localhost:3000/api/hello](http://localhost:3000/api/hello). This endpoint can be edited in `pages/api/hello.js`.

The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/api-routes/introduction) instead of React pages.

## Learn More

To learn more about Next.js, take a look at the following resources:

- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.

You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!

## Deploy on Vercel

The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.

Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
25 changes: 25 additions & 0 deletions packages/nextjs/test/buildProcess/testApp/next.config.js
@@ -0,0 +1,25 @@
// const nextConfig = {
// }
//
// module.exports = nextConfig

const { withSentryConfig } = require('@sentry/nextjs');

const moduleExports = {
reactStrictMode: true,
swcMinify: true,
eslint: {
ignoreDuringBuilds: true,
},
sentry: {
// Suppress the warning message from `handleSourcemapHidingOptionWarning` in `src/config/webpack.ts`
// TODO (v8): This can come out in v8, because this option will get a default value
hideSourceMaps: false,
},
};
const SentryWebpackPluginOptions = {
dryRun: true,
silent: true,
};

module.exports = withSentryConfig(moduleExports, SentryWebpackPluginOptions);
18 changes: 18 additions & 0 deletions packages/nextjs/test/buildProcess/testApp/package.json
@@ -0,0 +1,18 @@
{
"name": "testapp",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@sentry/nextjs": "file:../../../",
"@vercel/nft": "latest",
"next": "13.0.1",
"react": "18.2.0",
"react-dom": "18.2.0"
}
}
@@ -0,0 +1,5 @@
import * as Sentry from '@sentry/nextjs';

Sentry.init({
dsn: 'https://public@dsn.ingest.sentry.io/1337',
});
@@ -0,0 +1,5 @@
import * as Sentry from '@sentry/nextjs';

Sentry.init({
dsn: 'https://public@dsn.ingest.sentry.io/1337',
});
3 changes: 3 additions & 0 deletions packages/nextjs/test/buildProcess/testApp/src/dogs.json
@@ -0,0 +1,3 @@
{
"dogs": "are great"
}
5 changes: 5 additions & 0 deletions packages/nextjs/test/buildProcess/testApp/src/pages/_app.js
@@ -0,0 +1,5 @@
function MyApp({ Component, pageProps }) {
return <Component {...pageProps} />;
}

export default MyApp;
@@ -0,0 +1,8 @@
import * as fs from 'fs';
import * as path from 'path';

export default function handler(req, res) {
const dogData = JSON.parse(fs.readFileSync(path.resolve('../../dogs.json')));
dogData.test = 'something';
res.status(200).json(dogData);
}
3 changes: 3 additions & 0 deletions packages/nextjs/test/buildProcess/testApp/src/pages/index.js
@@ -0,0 +1,3 @@
export default function Home() {
return <div>This is the homepage.</div>;
}

0 comments on commit 1c9d654

Please sign in to comment.