mirror of
				https://github.com/Unleash/unleash.git
				synced 2025-10-27 11:02:16 +01:00 
			
		
		
		
	This allows the users of 'unleash-server' to programatically change the logger implemnentation. #175
		
			
				
	
	
		
			58 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
'use strict';
 | 
						|
 | 
						|
const { test } = require('ava');
 | 
						|
const { setupApp } = require('./../../helpers/test-helper');
 | 
						|
 | 
						|
test.serial('returns three archived toggles', async t => {
 | 
						|
    t.plan(1);
 | 
						|
    const { request, destroy } = await setupApp('archive_serial');
 | 
						|
    return request
 | 
						|
        .get('/api/admin/archive/features')
 | 
						|
        .expect('Content-Type', /json/)
 | 
						|
        .expect(200)
 | 
						|
        .expect(res => {
 | 
						|
            t.true(res.body.features.length === 3);
 | 
						|
        })
 | 
						|
        .then(destroy);
 | 
						|
});
 | 
						|
 | 
						|
test.serial('revives a feature by name', async t => {
 | 
						|
    t.plan(0);
 | 
						|
    const { request, destroy } = await setupApp('archive_serial');
 | 
						|
    return request
 | 
						|
        .post('/api/admin/archive/revive/featureArchivedX')
 | 
						|
        .set('Content-Type', 'application/json')
 | 
						|
        .expect(200)
 | 
						|
        .then(destroy);
 | 
						|
});
 | 
						|
 | 
						|
test.serial(
 | 
						|
    'archived feature is not accessible via /features/:featureName',
 | 
						|
    async t => {
 | 
						|
        t.plan(0);
 | 
						|
        const { request, destroy } = await setupApp('archive_serial2');
 | 
						|
 | 
						|
        await request
 | 
						|
            .get('/api/admin/features/featureX')
 | 
						|
            .set('Content-Type', 'application/json')
 | 
						|
            .expect(200);
 | 
						|
 | 
						|
        await request
 | 
						|
            .delete('/api/admin/features/featureX')
 | 
						|
            .set('Content-Type', 'application/json')
 | 
						|
            .expect(200);
 | 
						|
 | 
						|
        return request
 | 
						|
            .get('/api/admin/features/featureX')
 | 
						|
            .set('Content-Type', 'application/json')
 | 
						|
            .expect(404)
 | 
						|
            .then(destroy);
 | 
						|
    }
 | 
						|
);
 | 
						|
 | 
						|
test.serial('must set name when reviving toggle', async t => {
 | 
						|
    t.plan(0);
 | 
						|
    const { request, destroy } = await setupApp('archive_serial');
 | 
						|
    return request.post('/api/admin/archive/revive/').expect(404).then(destroy);
 | 
						|
});
 |