- App.tsx: full navigation (Auth stack + Main tabs with 5 screens) - Auth: LoginScreen, RegisterScreen, ForgotPasswordScreen - HomeScreen: dashboard with IoT metrics, weather widget, alerts, quick actions, sensors - MapScreen: interactive map with layer toggles (6 layers) - MarketplaceScreen: categories (6), products (5), search - ChatScreen: AI chat with quick prompts (4), bot responses - ProfileScreen: user info, stats, menu (9 items), logout - AlertsScreen: alert list with severity, acknowledge - SensorsScreen: sensor list with type filters (6 types), search - ZonesScreen: zone cards with stats - SettingsScreen: language picker (FR/EN/ES/DE), privacy, about - Stores: iotStore (sensors, zones, alerts), notificationStore, uiStore + i18n - Hooks: useSensors, useAlerts, useNotifications, useLocation - Components: Card, Button, LoadingSpinner, ErrorBoundary, Header - Services: iotService, notificationService (with axios API client) - Utils: formatters (temp, AQI, noise, dates), validators (email, password, IBAN) - Theme: colors.ts with full design system (Blue Ocean palette) - Ditto: fixed MongoDB connection, new JWT secrets, official gateway image
72 lines
2.2 KiB
JavaScript
72 lines
2.2 KiB
JavaScript
/*!
|
|
* is-valid-path <https://github.com/jonschlinkert/is-valid-path>
|
|
*
|
|
* Copyright (c) 2014-2015, Jon Schlinkert.
|
|
* Licensed under the MIT License.
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
/* deps: mocha */
|
|
require('should');
|
|
var isValid = require('./');
|
|
|
|
describe('isValid', function () {
|
|
it('should return `true` if the path is valid:', function () {
|
|
isValid('.').should.be.true;
|
|
isValid('aa').should.be.true;
|
|
isValid('abc.js').should.be.true;
|
|
isValid('abc/def/ghi.js').should.be.true;
|
|
});
|
|
|
|
it('should return `false` if it is a glob pattern:', function () {
|
|
isValid('*.js').should.be.false;
|
|
isValid('!*.js').should.be.false;
|
|
isValid('!foo').should.be.false;
|
|
isValid('!foo.js').should.be.false;
|
|
isValid('**/abc.js').should.be.false;
|
|
isValid('abc/*.js').should.be.false;
|
|
});
|
|
|
|
it('should return `false` if the path has brace characters:', function () {
|
|
isValid('abc/{a,b}.js').should.be.false;
|
|
isValid('abc/{a..z}.js').should.be.false;
|
|
isValid('abc/{a..z..2}.js').should.be.false;
|
|
});
|
|
|
|
it('should return `false` if it has an extglob:', function () {
|
|
isValid('abc/@(a).js').should.be.false;
|
|
isValid('abc/!(a).js').should.be.false;
|
|
isValid('abc/+(a).js').should.be.false;
|
|
isValid('abc/*(a).js').should.be.false;
|
|
isValid('abc/?(a).js').should.be.false;
|
|
});
|
|
|
|
it('should return `false` if it has extglob characters:', function () {
|
|
isValid('abc/@.js').should.be.false;
|
|
isValid('abc/!.js').should.be.false;
|
|
isValid('abc/+.js').should.be.false;
|
|
isValid('abc/*.js').should.be.false;
|
|
isValid('abc/?.js').should.be.false;
|
|
});
|
|
|
|
it('should return `false` if the path has regex characters:', function () {
|
|
isValid('abc/(aaa|bbb).js').should.be.false;
|
|
isValid('abc/?.js').should.be.false;
|
|
isValid('?.js').should.be.false;
|
|
isValid('[abc].js').should.be.false;
|
|
isValid('[^abc].js').should.be.false;
|
|
isValid('a/b/c/[a-z].js').should.be.false;
|
|
isValid('[a-j]*[^c]b/c').should.be.false;
|
|
});
|
|
|
|
it('should return `false` if it is not a string:', function () {
|
|
isValid().should.be.false;
|
|
isValid({}).should.be.false;
|
|
isValid(null).should.be.false;
|
|
isValid(['**/*.js']).should.be.false;
|
|
isValid(['foo.js']).should.be.false;
|
|
});
|
|
});
|
|
|