UNPKG

github

Version:
238 lines (219 loc) 7.07 kB
/* * Copyright 2012 Cloud9 IDE, Inc. * * This product includes software developed by * Cloud9 IDE, Inc (http://c9.io). * * Author: Mike de Boer <info@mikedeboer.nl> */ "use strict"; var Assert = require("assert"); var Client = require("./../lib/index"); var testAuth = require("./../testAuth.json"); describe("[migrations]", function() { var client; var token = testAuth["token"]; beforeEach(function() { client = new Client(); client.authenticate({ type: "oauth", token: token }); }); it("should successfully execute DELETE /repos/:owner/:repo/import (cancelImport)", function(next) { client.migrations.cancelImport( { owner: "String", repo: "String" }, function(err, res) { Assert.equal(err, null); // other assertions go here next(); } ); }); it("should successfully execute DELETE /orgs/:org/migrations/:id/archive (deleteMigrationArchive)", function(next) { client.migrations.deleteMigrationArchive( { org: "String", id: "String" }, function(err, res) { Assert.equal(err, null); // other assertions go here next(); } ); }); it("should successfully execute GET /repos/:owner/:repo/import/authors (getImportCommitAuthors)", function(next) { client.migrations.getImportCommitAuthors( { owner: "String", repo: "String", since: "String" }, function(err, res) { Assert.equal(err, null); // other assertions go here next(); } ); }); it("should successfully execute GET /repos/:owner/:repo/import (getImportProgress)", function(next) { client.migrations.getImportProgress( { owner: "String", repo: "String" }, function(err, res) { Assert.equal(err, null); // other assertions go here next(); } ); }); it("should successfully execute GET /:owner/:name/import/large_files (getLargeImportFiles)", function(next) { client.migrations.getLargeImportFiles( { owner: "String", name: "String" }, function(err, res) { Assert.equal(err, null); // other assertions go here next(); } ); }); it("should successfully execute GET /orgs/:org/migrations/:id/archive (getMigrationArchiveLink)", function(next) { client.migrations.getMigrationArchiveLink( { org: "String", id: "String" }, function(err, res) { Assert.equal(err, null); // other assertions go here next(); } ); }); it("should successfully execute GET /orgs/:org/migrations/:id (getMigrationStatus)", function(next) { client.migrations.getMigrationStatus( { org: "String", id: "String" }, function(err, res) { Assert.equal(err, null); // other assertions go here next(); } ); }); it("should successfully execute GET /orgs/:org/migrations (getMigrations)", function(next) { client.migrations.getMigrations( { org: "String", page: "Number", per_page: "Number" }, function(err, res) { Assert.equal(err, null); // other assertions go here next(); } ); }); it("should successfully execute PATCH /repos/:owner/:repo/import/authors/:author_id (mapImportCommitAuthor)", function(next) { client.migrations.mapImportCommitAuthor( { owner: "String", repo: "String", author_id: "String", email: "String", name: "String" }, function(err, res) { Assert.equal(err, null); // other assertions go here next(); } ); }); it("should successfully execute PATCH /:owner/:name/import/lfs (setImportLfsPreference)", function(next) { client.migrations.setImportLfsPreference( { owner: "String", name: "String", use_lfs: "String" }, function(err, res) { Assert.equal(err, null); // other assertions go here next(); } ); }); it("should successfully execute PUT /repos/:owner/:repo/import (startImport)", function(next) { client.migrations.startImport( { owner: "String", repo: "String", vcs_url: "String", vcs: "String", vcs_username: "String", vcs_password: "String", tfvc_project: "String" }, function(err, res) { Assert.equal(err, null); // other assertions go here next(); } ); }); it("should successfully execute POST /orgs/:org/migrations (startMigration)", function(next) { client.migrations.startMigration( { org: "String", repositories: "Array", lock_repositories: "Boolean", exclude_attachments: "Boolean" }, function(err, res) { Assert.equal(err, null); // other assertions go here next(); } ); }); it("should successfully execute DELETE /orgs/:org/migrations/:id/repos/:repo_name/lock (unlockRepoLockedForMigration)", function(next) { client.migrations.unlockRepoLockedForMigration( { org: "String", id: "String", repo_name: "String" }, function(err, res) { Assert.equal(err, null); // other assertions go here next(); } ); }); it("should successfully execute PATCH /repos/:owner/:repo/import (updateImport)", function(next) { client.migrations.updateImport( { owner: "String", repo: "String" }, function(err, res) { Assert.equal(err, null); // other assertions go here next(); } ); }); });